mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 01:16:03 +01:00
10 lines
205 B
Ruby
10 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationComponent < ViewComponent::Base
|
|
include ApplicationHelper
|
|
|
|
def current_user = helpers.current_user
|
|
|
|
def user_signed_in? = helpers.user_signed_in?
|
|
|
|
end
|