16 lines
313 B
Ruby
16 lines
313 B
Ruby
class ApplicationComponent < ViewComponent::Base
|
|
include ViewComponent::Translatable
|
|
include FlipperHelper
|
|
|
|
def current_user
|
|
controller.current_user
|
|
end
|
|
|
|
def current_administrateur
|
|
controller.current_administrateur
|
|
end
|
|
|
|
def current_gestionnaire
|
|
controller.current_gestionnaire
|
|
end
|
|
end
|