Skip to content

Commit

Permalink
graphql for table_row_selector
Browse files Browse the repository at this point in the history
  • Loading branch information
maatinito committed Oct 22, 2024
1 parent d2529e4 commit 499796c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4773,6 +4773,11 @@ enum TypeDeChamp {
"""
siret

"""
Translation missing: fr.activerecord.attributes.type_de_champ.type_champs.table_row_selector
"""
table_row_selector

"""
Carte de Polynésie
"""
Expand Down
6 changes: 6 additions & 0 deletions app/graphql/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21232,6 +21232,12 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "table_row_selector",
"description": "Translation missing: fr.activerecord.attributes.type_de_champ.type_champs.table_row_selector",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "te_fenua",
"description": "Carte de Polynésie",
Expand Down
2 changes: 2 additions & 0 deletions app/graphql/types/champ_descriptor_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ def resolve_type(object, context)
Types::Champs::Descriptor::TeFenuaChampDescriptorType
when TypeDeChamp.type_champs.fetch(:visa)
Types::Champs::Descriptor::VisaChampDescriptorType
when TypeDeChamp.type_champs.fetch(:table_row_selector)
Types::Champs::Descriptor::TableRowSelectorChampDescriptorType

# ----- DS champs
when TypeDeChamp.type_champs.fetch(:engagement_juridique)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Types::Champs::Descriptor
class TableRowSelectorChampDescriptorType < Types::BaseObject
implements Types::ChampDescriptorType
end
end

0 comments on commit 499796c

Please sign in to comment.