7 lines
160 B
Ruby
Raw Normal View History

2024-11-18 23:27:50 +00:00
# Copyright (C) 2024 Manuel Bustillo
class Current < ActiveSupport::CurrentAttributes
attribute :session
delegate :user, to: :session, allow_nil: true
end