mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:29:53 +01:00
7 lines
193 B
Ruby
7 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationComponent < ViewComponent::Base
|
|
include ApplicationHelper
|
|
delegate :current_user, to: :helpers
|
|
delegate :user_signed_in?, to: :helpers
|
|
end
|