akkoma/lib/pleroma/web/oauth/fallback_controller.ex

17 lines
496 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.OAuth.FallbackController do
2018-03-30 13:01:53 +00:00
use Pleroma.Web, :controller
alias Pleroma.Web.OAuth.OAuthController
2018-03-30 13:01:53 +00:00
# No user/password
def call(conn, _) do
conn
|> put_status(:unauthorized)
2018-03-30 13:01:53 +00:00
|> put_flash(:error, "Invalid Username/Password")
|> OAuthController.authorize(conn.params["authorization"])
2018-03-30 13:01:53 +00:00
end
end