8 lines
110 B
Ruby
8 lines
110 B
Ruby
class Current < ActiveSupport::CurrentAttributes
|
|
attribute :user
|
|
|
|
def account
|
|
Account.first
|
|
end
|
|
end
|