You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the app initialization the subsite will automatically generate a keyword named subsite_exclusive. Each resource with this keyword assigned, will be escluded from the global catalogue (this is valid also for the API/v2 /resources, /datasets, /documents, /maps, /geoapps )
NOTE: The subsite_exclusive keyword is used to exclude a resource from the global catalog. This keyword is commonly applied to all resources. If a resource needs to be accessible only within a specific subsite, utilize the additional configuration provided by that subsite to filter it out from other subsites.
For example:
resource1 -> no keyword
resource2 -> keyword1 assinged
resource3 -> subsite_exclusive keyword assigned
Call -> http://localhost:8000/#/
- will return resource1 and resource2
Via API/v2 /resources, /datasets, /documents, /maps, /geoapps is possible to return all the value even if the subsite_exclusive keyword is set
For example:
resource1 -> no keyword
resource2 -> keyword1 assinged
resource3 -> subsite_exclusive keyword assigned
Call -> http://localhost:8000/api/v2/resources/
- will return resource1 and resource2
Call -> http://localhost:8000/api/v2/resources/?return_all=true
- will return resource1, resource2 and resource3
The text was updated successfully, but these errors were encountered:
Exclusive keyword
During the app initialization the subsite will automatically generate a keyword named
subsite_exclusive
. Each resource with this keyword assigned, will be escluded from the global catalogue (this is valid also for the API/v2/resources
,/datasets
,/documents
,/maps
,/geoapps
)NOTE: The
subsite_exclusive
keyword is used to exclude a resource from the global catalog. This keyword is commonly applied to all resources. If a resource needs to be accessible only within a specific subsite, utilize the additional configuration provided by that subsite to filter it out from other subsites.For example:
Via API/v2
/resources
,/datasets
,/documents
,/maps
,/geoapps
is possible to return all the value even if thesubsite_exclusive
keyword is setFor example:
The text was updated successfully, but these errors were encountered: