mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
- Fix string literal style in doorkeeper.rb - Add missing final newlines - Remove trailing whitespace - Fix array bracket spacing in migrations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
317 B
Ruby
6 lines
317 B
Ruby
# Ensure Doorkeeper controllers use the correct layout
|
|
Rails.application.config.to_prepare do
|
|
Doorkeeper::AuthorizationsController.layout "doorkeeper/application"
|
|
Doorkeeper::AuthorizedApplicationsController.layout "doorkeeper/application"
|
|
Doorkeeper::ApplicationsController.layout "doorkeeper/application"
|
|
end
|