1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/lib/pleroma/web/oauth/fallback_controller.ex

12 lines
287 B
Elixir
Raw Normal View History

defmodule Pleroma.Web.OAuth.FallbackController do
2018-03-30 14:01:53 +01:00
use Pleroma.Web, :controller
alias Pleroma.Web.OAuth.OAuthController
2018-03-30 14:01:53 +01:00
# No user/password
def call(conn, _) do
conn
|> put_flash(:error, "Invalid Username/Password")
|> OAuthController.authorize(conn.params)
end
end