feat: new VIEW security
This commit is contained in:
parent
16befa843b
commit
dc3458b05c
@ -15,10 +15,25 @@ In order to surface a table to a new group, simply add a record to the `DATACTRL
|
|||||||
|
|
||||||
![Screenshot](img/securitytable.png)
|
![Screenshot](img/securitytable.png)
|
||||||
|
|
||||||
## EDIT vs APPROVE
|
## ACCESS_LEVEL
|
||||||
|
|
||||||
The `EDIT` permission determines which groups will be able to upload CSVs and submit changes via the web interface for that table. The `APPROVE` permission determines which groups will be able to approve those changes, and hence enable the target table to be loaded. If you wish to have members of a particular group both edit AND approve, then two lines (one for each group) must be entered, per table.
|
### EDIT
|
||||||
|
|
||||||
|
The `EDIT` permission determines which groups will be able to upload CSVs and submit changes via the web interface for that table.
|
||||||
|
|
||||||
|
### APPROVE
|
||||||
|
The `APPROVE` permission determines which groups will be able to approve those changes, and hence enable the target table to be loaded. If you wish to have members of a particular group both edit AND approve, then two lines (one for each group) must be entered, per table.
|
||||||
|
|
||||||
|
### VIEW
|
||||||
|
The default behaviour when installing Data Controller is that the [viewer](dcu-tableviewer.md) lets all SAS Users see all the tables that they are authorised to view in SAS. However there may be reasons to further restrict the tables in this component.
|
||||||
|
|
||||||
|
There is a global setting that will disable ALL tables in VIEWER unless explicitly authorised - this is available in MPE_CONFIG. Set `DC_RESTRICT_VIEWER=YES`, submit, and approve.
|
||||||
|
|
||||||
|
If authorising groups without this setting, it means that tables will be restricted only in that library (the rest will still be visible).
|
||||||
|
|
||||||
|
Groups can be given VIEW access for all libraries or all tables within a library by using the keyword `*ALL*` instead of the libref / tablename.
|
||||||
|
|
||||||
|
It's also worth being aware of the `DC_VIEWLIB_CHECK` option in MPE_CONFIG. When this is switched on, SAS will confirm that the library is valid and contains tables, before adding to the list. This can sometimes be slow (depending on your library configurations), hence disabled - but as the list is actually cached on frontend (until the next hard refresh) the impact may worth it.
|
||||||
|
|
||||||
## Determining Group Members
|
## Determining Group Members
|
||||||
|
|
||||||
@ -37,4 +52,6 @@ filename mc url "https://raw.githubusercontent.com/macropeople/macrocore/master/
|
|||||||
/* call macro */
|
/* call macro */
|
||||||
%mm_getgroupmembers(YOURGROUPNAME)
|
%mm_getgroupmembers(YOURGROUPNAME)
|
||||||
/* the above will create a dataset containing the group members */
|
/* the above will create a dataset containing the group members */
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Another option is to use the custom groups feature by defining your own groups in the [MPE_GROUPS](dci-groups.md) table.
|
@ -48,3 +48,14 @@ run;
|
|||||||
/* run the program */
|
/* run the program */
|
||||||
%inc tmp;
|
%inc tmp;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Custom Library
|
||||||
|
|
||||||
|
If you wish to change the default *libref* or *libname* then there are TWO items to configure:
|
||||||
|
|
||||||
|
1) The library itself
|
||||||
|
|
||||||
|
2) The `mpelib` macro variable and the libname statement in the `/Admin/Data_Controller_Settings` stored process.
|
||||||
|
|
||||||
|
!!! note
|
||||||
|
Be sure to make this change *after* running the configurator, to ensure the tables are first registered!
|
@ -11,6 +11,8 @@ Emails are sent after any post edit / post approve hooks. They can be sent when
|
|||||||
|
|
||||||
Email addresses are looked for first in `DCXXXXXX.MPE_EMAILS`. If they are not found there, then a metadata search is made (the first email found in metadata for that user is used).
|
Email addresses are looked for first in `DCXXXXXX.MPE_EMAILS`. If they are not found there, then a metadata search is made (the first email found in metadata for that user is used).
|
||||||
|
|
||||||
|
<iframe src="https://player.vimeo.com/video/343401440" width="640" height="360" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
As not every site has emails configured, this feature is switched OFF by default.
|
As not every site has emails configured, this feature is switched OFF by default.
|
||||||
To switch it on, navigate to `DCXXXXXX.MPE_CONFIG` and set the value for `DC_EMAIL_ALERTS` to be `YES` (uppercase).
|
To switch it on, navigate to `DCXXXXXX.MPE_CONFIG` and set the value for `DC_EMAIL_ALERTS` to be `YES` (uppercase).
|
||||||
|
@ -11,7 +11,7 @@ pages:
|
|||||||
- Selectboxes: dcc-selectbox.md
|
- Selectboxes: dcc-selectbox.md
|
||||||
- Dates / Datetimes: dcc-dates.md
|
- Dates / Datetimes: dcc-dates.md
|
||||||
- Emails: emails.md
|
- Emails: emails.md
|
||||||
- Groups: groups.md
|
- Groups: dcc-groups.md
|
||||||
- Installing Data Controller:
|
- Installing Data Controller:
|
||||||
- System Requirements: dci-requirements.md
|
- System Requirements: dci-requirements.md
|
||||||
- Backend: dci-backend.md
|
- Backend: dci-backend.md
|
||||||
|
Loading…
Reference in New Issue
Block a user