Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
8aa646ca
Commit
8aa646ca
authored
Dec 10, 2018
by
lain
Browse files
Merge branch 'fix/mix-task-uploads-moduledoc' into 'develop'
Mix tasks: improve uploads.ex moduledoc See merge request
!528
parents
729321ad
bda25b99
Pipeline
#5175
passed with stages
in 2 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/mix/tasks/pleroma/uploads.ex
View file @
8aa646ca
...
...
@@ -5,11 +5,18 @@ defmodule Mix.Tasks.Pleroma.Uploads do
require
Logger
@log_every
50
@shortdoc
"Migrate uploads from local to remote storage"
@doc
"""
@shortdoc
"Migrates uploads from local to remote storage"
@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
delete?
=
Enum
.
member?
(
args
,
"--delete"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment