retrospring/app/components/application_component.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
193 B
Ruby
Raw Normal View History

2023-10-21 00:24:44 +02:00
# frozen_string_literal: true
class ApplicationComponent < ViewComponent::Base
include ApplicationHelper
2023-10-22 21:00:25 +02:00
delegate :current_user, to: :helpers
delegate :user_signed_in?, to: :helpers
2023-10-21 00:24:44 +02:00
end