12 lines
215 B
Ruby
12 lines
215 B
Ruby
|
class Procedure::Card::APIParticulierComponent < ApplicationComponent
|
||
|
def initialize(procedure:)
|
||
|
@procedure = procedure
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def render?
|
||
|
helpers.feature_enabled?(:api_particulier)
|
||
|
end
|
||
|
end
|