diff options
author | kaniini <nenolod@gmail.com> | 2018-11-10 12:25:08 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2018-11-10 12:25:08 +0000 |
commit | 9cdbac6843db7bc5a3a69bc14d9368d5f9d7b4e6 (patch) | |
tree | 632751c00db41a4cdc2027279257a0fca8950452 /lib/mix/tasks/relay_unfollow.ex | |
parent | c9c1f9dee2fe12fe55703255497f4a14eb0d4e13 (diff) | |
parent | 5ecb5629f6714cf20df3ac28eef585822fb2ea45 (diff) | |
download | pleroma-9cdbac6843db7bc5a3a69bc14d9368d5f9d7b4e6.tar.gz pleroma-9cdbac6843db7bc5a3a69bc14d9368d5f9d7b4e6.zip |
Merge branch 'feature/documentation' into 'develop'
Add ex_doc documentation to Pleroma
See merge request pleroma/pleroma!416
Diffstat (limited to 'lib/mix/tasks/relay_unfollow.ex')
-rw-r--r-- | lib/mix/tasks/relay_unfollow.ex | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/mix/tasks/relay_unfollow.ex b/lib/mix/tasks/relay_unfollow.ex index 4621ace83..bd69fd8a0 100644 --- a/lib/mix/tasks/relay_unfollow.ex +++ b/lib/mix/tasks/relay_unfollow.ex @@ -3,7 +3,13 @@ defmodule Mix.Tasks.RelayUnfollow do require Logger alias Pleroma.Web.ActivityPub.Relay - @shortdoc "Follows a remote relay" + @moduledoc """ + Unfollows a remote relay + + Usage: ``mix relay_follow <relay_url>`` + + Example: ``mix relay_follow https://example.org/relay`` + """ def run([target]) do Mix.Task.run("app.start") |