6 lines
155 B
Ruby
6 lines
155 B
Ruby
class Current < ActiveSupport::CurrentAttributes
|
|
attribute :session
|
|
delegate :user, to: :session, allow_nil: true
|
|
attribute :organization, :user
|
|
end
|