mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-01-18 10:51:24 +00:00
added field to backend config
This commit is contained in:
parent
ea27788cf6
commit
42868fe7c2
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1955,6 +1955,7 @@ type maps {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
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(filter: layers_maps_filter, sort: [String], limit: Int, offset: Int, page: Int, search: String): [layers_maps]
|
||||||
layers_func: count_functions
|
layers_func: count_functions
|
||||||
}
|
}
|
||||||
@ -2002,6 +2003,7 @@ type maps_aggregated_count {
|
|||||||
url: Int
|
url: Int
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Int
|
hide_signup: Int
|
||||||
|
show_request_password: Int
|
||||||
layers: Int
|
layers: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2676,6 +2678,7 @@ type version_maps {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
hide_signup: Boolean
|
||||||
|
show_request_password: Boolean
|
||||||
layers: JSON
|
layers: JSON
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3225,6 +3228,7 @@ input create_maps_input {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
hide_signup: Boolean
|
||||||
|
show_request_password: Boolean
|
||||||
layers: [create_layers_maps_input]
|
layers: [create_layers_maps_input]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4205,6 +4209,7 @@ input maps_filter {
|
|||||||
url: string_filter_operators
|
url: string_filter_operators
|
||||||
zoom: number_filter_operators
|
zoom: number_filter_operators
|
||||||
hide_signup: boolean_filter_operators
|
hide_signup: boolean_filter_operators
|
||||||
|
show_request_password: boolean_filter_operators
|
||||||
layers: layers_maps_quantifier_filter
|
layers: layers_maps_quantifier_filter
|
||||||
layers_func: count_function_filter_operators
|
layers_func: count_function_filter_operators
|
||||||
_and: [maps_filter]
|
_and: [maps_filter]
|
||||||
@ -4770,6 +4775,7 @@ input update_maps_input {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
hide_signup: Boolean
|
||||||
|
show_request_password: Boolean
|
||||||
layers: [update_layers_maps_input]
|
layers: [update_layers_maps_input]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -23103,6 +23103,10 @@
|
|||||||
"nullable": true,
|
"nullable": true,
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"show_request_password": {
|
||||||
|
"nullable": true,
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
"layers": {
|
"layers": {
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"type": "array",
|
"type": "array",
|
||||||
|
|||||||
@ -2040,6 +2040,7 @@ type maps {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
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(filter: layers_maps_filter, sort: [String], limit: Int, offset: Int, page: Int, search: String): [layers_maps]
|
||||||
layers_func: count_functions
|
layers_func: count_functions
|
||||||
}
|
}
|
||||||
@ -2785,6 +2786,7 @@ input create_maps_input {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
hide_signup: Boolean
|
||||||
|
show_request_password: Boolean
|
||||||
layers: [create_layers_maps_input]
|
layers: [create_layers_maps_input]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3749,6 +3751,7 @@ input maps_filter {
|
|||||||
url: string_filter_operators
|
url: string_filter_operators
|
||||||
zoom: number_filter_operators
|
zoom: number_filter_operators
|
||||||
hide_signup: boolean_filter_operators
|
hide_signup: boolean_filter_operators
|
||||||
|
show_request_password: boolean_filter_operators
|
||||||
layers: layers_maps_quantifier_filter
|
layers: layers_maps_quantifier_filter
|
||||||
layers_func: count_function_filter_operators
|
layers_func: count_function_filter_operators
|
||||||
_and: [maps_filter]
|
_and: [maps_filter]
|
||||||
@ -4308,6 +4311,7 @@ input update_maps_input {
|
|||||||
url: String
|
url: String
|
||||||
zoom: Int
|
zoom: Int
|
||||||
hide_signup: Boolean
|
hide_signup: Boolean
|
||||||
|
show_request_password: Boolean
|
||||||
layers: [update_layers_maps_input]
|
layers: [update_layers_maps_input]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user