mirror of
https://github.com/mastodon/mastodon.git
synced 2026-02-21 11:58:29 +00:00
32 lines
574 B
Ruby
32 lines
574 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OAuth::AuthorizationsController < Doorkeeper::AuthorizationsController
|
|
prepend_before_action :store_current_location
|
|
|
|
layout 'modal'
|
|
|
|
content_security_policy do |p|
|
|
p.form_action(false)
|
|
end
|
|
|
|
include Localized
|
|
|
|
private
|
|
|
|
def store_current_location
|
|
store_location_for(:user, request.url)
|
|
end
|
|
|
|
def can_authorize_response?
|
|
!truthy_param?('force_login') && super
|
|
end
|
|
|
|
def truthy_param?(key)
|
|
ActiveModel::Type::Boolean.new.cast(params[key])
|
|
end
|
|
|
|
def mfa_setup_path
|
|
super({ oauth: true })
|
|
end
|
|
end
|