forked from AkkomaGang/akkoma
Mix tasks: improve uploads.ex moduledoc
This commit is contained in:
parent
cf85a9aea1
commit
cbe048bb3f
1 changed files with 10 additions and 4 deletions
|
@ -6,11 +6,17 @@ defmodule Mix.Tasks.Pleroma.Uploads do
|
|||
require Logger
|
||||
|
||||
@log_every 50
|
||||
@shortdoc "Migrate uploads from local to remote storage"
|
||||
@longdoc """
|
||||
Manages uploads
|
||||
## Migrate uploads from local to remote storage
|
||||
@shortdoc "Manages uploads"
|
||||
@moduledoc """
|
||||
Manages uploads.
|
||||
|
||||
## Migrate uploads from local to remote storage
|
||||
mix pleroma.uploads migrate_local TARGET_UPLOADER [OPTIONS...]
|
||||
Options:
|
||||
- `--delete` - delete local uploads after migrating them to the target uploader
|
||||
|
||||
|
||||
A list of avalible uploaders can be seen in config.exs
|
||||
"""
|
||||
|
||||
def run(["migrate_local", target_uploader | args]) do
|
||||
|
|
Loading…
Reference in a new issue