2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-20 18:53:40 +02:00
|
|
|
class Procedure::Card::APIParticulierComponent < ApplicationComponent
|
|
|
|
def initialize(procedure:)
|
|
|
|
@procedure = procedure
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def render?
|
|
|
|
helpers.feature_enabled?(:api_particulier)
|
|
|
|
end
|
|
|
|
end
|