4e09352c09
We skip the QB code and we fill external account ids automatically on creation with a sequence See: https://github.com/basecamp/fizzy-saas/pull/7
13 lines
341 B
Ruby
13 lines
341 B
Ruby
class ApplicationController < ActionController::Base
|
|
include Authentication
|
|
include Authorization
|
|
include CurrentRequest, CurrentTimezone, SetPlatform
|
|
include RequestForgeryProtection
|
|
include TurboFlash, ViewTransitions
|
|
include RoutingHeaders
|
|
|
|
etag { "v1" }
|
|
stale_when_importmap_changes
|
|
allow_browser versions: :modern
|
|
end
|