demarches-normaliennes/app/components/application_component.rb
2024-08-22 09:26:48 +02:00

24 lines
470 B
Ruby

# frozen_string_literal: true
class ApplicationComponent < ViewComponent::Base
include ViewComponent::Translatable
include FlipperHelper
delegate :rich_text_area_tag, :dsfr_icon, to: :helpers
def current_user
controller.current_user
end
def current_instructeur
controller.current_instructeur
end
def current_administrateur
controller.current_administrateur
end
def current_gestionnaire
controller.current_gestionnaire
end
end