social.metadata.moe/lib/pleroma/web/oauth/fallback_controller.ex

17 lines
496 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2019-01-01 00:41:47 +09: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 22:01:53 +09:00
use Pleroma.Web, :controller
alias Pleroma.Web.OAuth.OAuthController
2018-03-30 22:01:53 +09:00
# No user/password
def call(conn, _) do
conn
|> put_status(:unauthorized)
2018-03-30 22:01:53 +09:00
|> put_flash(:error, "Invalid Username/Password")
|> OAuthController.authorize(conn.params["authorization"])
2018-03-30 22:01:53 +09:00
end
end