Files
fizzy/app/models/current.rb
T
2024-09-18 13:06:30 -04: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