Limit activity types accepted to outbox to only 'Create'
[akkoma] / lib / pleroma / captcha / captcha_service.ex
index fe5a6bf66b9b2c9131ef1cb8abb2e28647f74122..6037b708709ef4c0d4ce336eb22f371d61626651 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Captcha.Service do
   @doc """
   Request new captcha from a captcha service.
@@ -24,5 +28,5 @@ defmodule Pleroma.Captcha.Service do
   @doc """
   This function is called periodically to clean up old captchas
   """
-  @callback cleanup(token :: String.t()) :: :ok
+  @callback cleanup() :: :ok
 end