demarches-normaliennes/app/graphql/mutations/dossier_modifier_annotation_checkbox.rb

24 lines
605 B
Ruby
Raw Normal View History

2020-07-28 18:16:03 +02:00
module Mutations
class DossierModifierAnnotationCheckbox < Mutations::DossierModifierAnnotation
description "Modifier lannotation au format oui/non."
argument :value, Boolean, required: true
def resolve(dossier:, annotation_id:, instructeur:, value:)
resolve_with_type(dossier:, annotation_id:, instructeur:, value:) do |type_champ, value|
2020-07-28 18:16:03 +02:00
if type_champ == TypeDeChamp.type_champs.fetch(:yes_no)
value ? 'true' : 'false'
else
value ? 'on' : 'off'
end
end
end
private
def input_type
:checkbox
end
2020-07-28 18:16:03 +02:00
end
end