added field to backend config

This commit is contained in:
Anton Tranelis 2025-08-26 14:36:18 +02:00
parent ea27788cf6
commit 42868fe7c2
4 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{
"collection": "maps",
"field": "show_request_password",
"type": "boolean",
"meta": {
"collection": "maps",
"conditions": null,
"display": null,
"display_options": null,
"field": "show_request_password",
"group": null,
"hidden": false,
"interface": "boolean",
"note": null,
"options": null,
"readonly": false,
"required": false,
"sort": 18,
"special": [
"cast-boolean"
],
"translations": null,
"validation": null,
"validation_message": null,
"width": "full"
},
"schema": {
"name": "show_request_password",
"table": "maps",
"data_type": "boolean",
"default_value": false,
"max_length": null,
"numeric_precision": null,
"numeric_scale": null,
"is_nullable": true,
"is_unique": false,
"is_indexed": false,
"is_primary_key": false,
"is_generated": false,
"generation_expression": null,
"has_auto_increment": false,
"foreign_key_table": null,
"foreign_key_column": null
}
}

View File

@ -1955,6 +1955,7 @@ type maps {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers(filter: layers_maps_filter, sort: [String], limit: Int, offset: Int, page: Int, search: String): [layers_maps]
layers_func: count_functions
}
@ -2002,6 +2003,7 @@ type maps_aggregated_count {
url: Int
zoom: Int
hide_signup: Int
show_request_password: Int
layers: Int
}
@ -2676,6 +2678,7 @@ type version_maps {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers: JSON
}
@ -3225,6 +3228,7 @@ input create_maps_input {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers: [create_layers_maps_input]
}
@ -4205,6 +4209,7 @@ input maps_filter {
url: string_filter_operators
zoom: number_filter_operators
hide_signup: boolean_filter_operators
show_request_password: boolean_filter_operators
layers: layers_maps_quantifier_filter
layers_func: count_function_filter_operators
_and: [maps_filter]
@ -4770,6 +4775,7 @@ input update_maps_input {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers: [update_layers_maps_input]
}

View File

@ -23103,6 +23103,10 @@
"nullable": true,
"type": "boolean"
},
"show_request_password": {
"nullable": true,
"type": "boolean"
},
"layers": {
"nullable": true,
"type": "array",

View File

@ -2040,6 +2040,7 @@ type maps {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers(filter: layers_maps_filter, sort: [String], limit: Int, offset: Int, page: Int, search: String): [layers_maps]
layers_func: count_functions
}
@ -2785,6 +2786,7 @@ input create_maps_input {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers: [create_layers_maps_input]
}
@ -3749,6 +3751,7 @@ input maps_filter {
url: string_filter_operators
zoom: number_filter_operators
hide_signup: boolean_filter_operators
show_request_password: boolean_filter_operators
layers: layers_maps_quantifier_filter
layers_func: count_function_filter_operators
_and: [maps_filter]
@ -4308,6 +4311,7 @@ input update_maps_input {
url: String
zoom: Int
hide_signup: Boolean
show_request_password: Boolean
layers: [update_layers_maps_input]
}