diff options
author | Panagiotis Karalis <pkaralis@intracom-telecom.com> | 2019-04-11 17:33:09 +0300 |
---|---|---|
committer | Panagiotis Karalis <pkaralis@intracom-telecom.com> | 2019-04-15 12:53:27 +0300 |
commit | 6ade07b42e9ef39dafda4504bc61eb4661b10cde (patch) | |
tree | 794825f95a8b3e38489a7f698b9035f392a31d94 /opnfv_testapi/ui/auth/constants.py | |
parent | dbcc039303c7f010348814694b8f75d621aa51e3 (diff) |
Update the behavior of roles for OVP/ONAP portals
The behavior of portals' roles are updated according to CVC decisions.
The behavior will be:
* no roles - the person can upload results and share results
to other users, but can not submit an application/results for review
* "user" role - the person can submit the application/results
fore review. To have this role, the person MUST have signed the
participation agreement through docusign.
* "reviewer" role - the person can see applications / results
submitted to review, and can vote (+1 / -1) on those results as part
of the review process. Votes are recorded.
* "admin" role - the person can approve applications
for public listing, etc. Final gatekeeper for the website, etc.
Responsible to ensure processes are followed, etc.
Change-Id: Ieca55725378c85f544eeea4390046bae456ee1a3
Signed-off-by: Panagiotis Karalis <pkaralis@intracom-telecom.com>
Diffstat (limited to 'opnfv_testapi/ui/auth/constants.py')
-rw-r--r-- | opnfv_testapi/ui/auth/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opnfv_testapi/ui/auth/constants.py b/opnfv_testapi/ui/auth/constants.py index 44ccb46..3cdfe09 100644 --- a/opnfv_testapi/ui/auth/constants.py +++ b/opnfv_testapi/ui/auth/constants.py @@ -1,6 +1,6 @@ OPENID = 'openid' ROLE = 'role' -DEFAULT_ROLE = 'user' +DEFAULT_ROLE = '' # OpenID parameters OPENID_MODE = 'openid.mode' |