Files
once-campfire/app/models/current.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

10 lines
194 B
Ruby

class Current < ActiveSupport::CurrentAttributes
attribute :user, :request
delegate :host, :protocol, to: :request, prefix: true, allow_nil: true
def account
Account.first
end
end