Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-webui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-webui
Commits
93ac2c77
Commit
93ac2c77
authored
2 years ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Patches
Plain Diff
DOC: Add documentation for hiding/showing of properties
parent
baebbd7b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!89
Release v0.10.0
,
!86
F hide properties
Pipeline
#31412
passed
2 years ago
Stage: linting
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/doc/extension/display_of_properties.rst
+86
-0
86 additions, 0 deletions
src/doc/extension/display_of_properties.rst
with
86 additions
and
0 deletions
src/doc/extension/display_of_properties.rst
0 → 100644
+
86
−
0
View file @
93ac2c77
Tweaking the display of properties
==================================
Hide or show properties for specific roles and users
****************************************************
.. note::
This feature is part of CaosDB WebUI 0.10 and is not available for 0.9.X or
older.
.. warning::
Hiding properties is purely cosmetics and should **never** be considered a
security feature. The hidden properties are still part of the server
response.
Sometimes it is desirable to hide certain properties for specific users or
roles, e.g., when they might be irrelevant or confusing. For example, an
internal id might only be of interest to curators or administrators, whereas it
is entirely meaningless to most other users.
To configure the hiding of properties, you first need to enable the build
variable ``BUILD_MODULE_EXT_PROPERTY_DISPLAY``. Then, the display of the
properties is configured in ``conf/ext/json/ext_prop_display.json``. In there,
properties of a specific RecordType can be hidden by specifying the name of the
property, and the names of the roles and/or users from whom it should be hidden.
.. code-block:: json
{
"RecordTypeName": {
"hide": [
{
"name": "property name",
"roles": ["list", "of", "roles"],
"users": ["list", "of", "users"]
},
...
]
},
...
}
In the same way but using the ``show`` keyword, properties can be hidden for
everyone **but** the specified users/roles:
.. code-block:: json
{
"RecordTypeName": {
"show": [
{
"name": "property name",
"roles": ["list", "of", "roles"],
"users": ["list", "of", "users"]
},
...
]
},
...
}
For example, using the data from demo.indiscale.com, the following would hide
the ``price`` of all ``MusicalInstruments`` from ``anonymous`` and their
``Manufacturer`` from the ``admin`` user.
.. code-block:: json
{
"MusicalInstrument": {
"hide": [
{"name": "price", "roles": ["anonymous"], "users": []},
{"name": "Manufacturer", "roles": [], "users": ["admin"]}
]
}
}
Future
******
In the future, this feature will be extended to allow the RecordType-wise
`sorting <https://gitlab.com/caosdb/caosdb-webui/-/issues/189>`__ of properties
and to `toggle <https://gitlab.com/caosdb/caosdb-webui/-/issues/190>`__
properties.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment