mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 06:09:38 +02:00
* Stubbing in early access * Styling * Title tweak * Early access tweaks Also removed the allow_browser helper as it tends to cause more headaches than we really care about at this point * Lint
12 lines
286 B
Ruby
12 lines
286 B
Ruby
class ApplicationController < ActionController::Base
|
|
include Localize, AutoSync, Authentication, Invitable, SelfHostable, StoreLocation
|
|
include Pagy::Backend
|
|
|
|
private
|
|
|
|
def with_sidebar
|
|
return "turbo_rails/frame" if turbo_frame_request?
|
|
|
|
"with_sidebar"
|
|
end
|
|
end
|