8 lines
119 B
Ruby
8 lines
119 B
Ruby
class Current < ActiveSupport::CurrentAttributes
|
|
attribute :user
|
|
|
|
def organization
|
|
user.organization
|
|
end
|
|
end
|