diff --git a/backend/directus-config/snapshot/fields/maps/show_request_password.json b/backend/directus-config/snapshot/fields/maps/show_request_password.json new file mode 100644 index 00000000..276a251b --- /dev/null +++ b/backend/directus-config/snapshot/fields/maps/show_request_password.json @@ -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 + } +} diff --git a/backend/directus-config/specs/item.graphql b/backend/directus-config/specs/item.graphql index 3c91797e..74b37fbf 100644 --- a/backend/directus-config/specs/item.graphql +++ b/backend/directus-config/specs/item.graphql @@ -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] } diff --git a/backend/directus-config/specs/openapi.json b/backend/directus-config/specs/openapi.json index 31ff038d..b65c0c12 100644 --- a/backend/directus-config/specs/openapi.json +++ b/backend/directus-config/specs/openapi.json @@ -23103,6 +23103,10 @@ "nullable": true, "type": "boolean" }, + "show_request_password": { + "nullable": true, + "type": "boolean" + }, "layers": { "nullable": true, "type": "array", diff --git a/backend/directus-config/specs/system.graphql b/backend/directus-config/specs/system.graphql index 67f7fae2..e4b1a9e5 100644 --- a/backend/directus-config/specs/system.graphql +++ b/backend/directus-config/specs/system.graphql @@ -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] }