Added endpoint for changing passwords

This commit is contained in:
Syldexia 2018-05-21 22:17:34 +01:00
commit d0690622cd
4 changed files with 104 additions and 3 deletions

View file

@ -73,6 +73,7 @@ defmodule Pleroma.Web.Router do
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
pipe_through(:authenticated_api)
post("/follow_import", UtilController, :follow_import)
post("/change_password", UtilController, :change_password)
post("/delete_account", UtilController, :delete_account)
end