Files
fizzy/app/models/current.rb
T
2024-10-23 18:49:40 -06:00

7 lines
171 B
Ruby

class Current < ActiveSupport::CurrentAttributes
attribute :session
delegate :user, to: :session, allow_nil: true
delegate :account, to: :user, allow_nil: true
end