mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
7 lines
207 B
Ruby
7 lines
207 B
Ruby
class Current < ActiveSupport::CurrentAttributes
|
|
attribute :session
|
|
attribute :user_agent, :ip_address
|
|
|
|
delegate :user, to: :session, allow_nil: true
|
|
delegate :family, to: :user, allow_nil: true
|
|
end
|