Move layout setup for OAuth views to controllers (#35176)

This commit is contained in:
Matt Jankowski 2025-06-25 09:26:17 -04:00 committed by GitHub
parent 392eaf1010
commit 8285194451
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 2 deletions

View File

@ -6,6 +6,8 @@ class OAuth::AuthorizationsController < Doorkeeper::AuthorizationsController
before_action :store_current_location
before_action :authenticate_resource_owner!
layout 'modal'
content_security_policy do |p|
p.form_action(false)
end

View File

@ -11,6 +11,8 @@ class OAuth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicatio
skip_before_action :require_functional!
layout 'admin'
include Localized
def destroy

View File

@ -115,8 +115,6 @@ module Mastodon
end
config.to_prepare do
Doorkeeper::AuthorizationsController.layout 'modal'
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
Doorkeeper::Application.include ApplicationExtension
Doorkeeper::AccessGrant.include AccessGrantExtension
Doorkeeper::AccessToken.include AccessTokenExtension

View File

@ -3,6 +3,8 @@
require 'rails_helper'
RSpec.describe OAuth::AuthorizationsController do
render_views
let(:app) { Doorkeeper::Application.create!(name: 'test', redirect_uri: 'http://localhost/', scopes: 'read') }
describe 'GET #new' do
@ -24,6 +26,8 @@ RSpec.describe OAuth::AuthorizationsController do
.to have_http_status(200)
expect(response.headers['Cache-Control'])
.to include('private, no-store')
expect(response.parsed_body.at('body.modal-layout'))
.to be_present
expect(controller.stored_location_for(:user))
.to eq authorize_path_for(app)
end

View File

@ -21,6 +21,8 @@ RSpec.describe OAuth::AuthorizedApplicationsController do
.to have_http_status(200)
expect(response.headers['Cache-Control'])
.to include('private, no-store')
expect(response.parsed_body.at('body.admin'))
.to be_present
expect(controller.stored_location_for(:user))
.to eq '/oauth/authorized_applications'
end