Files
speckle-server/packages/server/modules/core/scopes.js
T
Kristaps Fabians Geikins 6af6c656a4 feat(fe2): app authorization workflow redesign [WBX-217] (#2044)
* WIP

* new permissions table

* permissions grouped

* updated scope descriptions

* more scope copy adjustments

* allow auth error handling

* manually closable toast notification

* fixed mentions rendering

* error view

* not you? feature

* cleanup

* minor styling changes

* WIP table

* finished authorized apps table

* minor cleanup

* cleaning up comment

* testing changes
2024-02-23 16:50:07 +02:00

65 lines
1.5 KiB
JavaScript

'use strict'
const { Scopes } = require('@/modules/core/helpers/mainConstants')
module.exports = [
{
name: Scopes.Streams.Read,
description:
'Read your streams, and any associated information (branches, commits, objects).',
public: true
},
{
name: Scopes.Streams.Write,
description:
'Create streams on your behalf, and any associated data (branches, commits, objects).',
public: true
},
{
name: Scopes.Profile.Read,
description: 'Read your profile information.',
public: true
},
{
name: Scopes.Profile.Email,
description: 'Read the email address you registered with.',
public: true
},
{
name: Scopes.Profile.Delete,
description: 'Delete the account with all associated data.',
public: false
},
{
name: Scopes.Users.Read,
description: "Read other users' profiles.",
public: true
},
{
name: Scopes.Server.Stats,
description:
'Request server stats from the API. Only works in conjunction with a "server:admin" role.',
public: true
},
{
name: Scopes.Users.Email,
description: 'Access the emails of other users.',
public: false
},
{
name: Scopes.Server.Setup,
description:
'Edit server information. Note: Only server admins will be able to use this token.',
public: false
},
{
name: Scopes.Tokens.Read,
description: 'Access API tokens.',
public: false
},
{
name: Scopes.Tokens.Write,
description: 'Create and delete API tokens.',
public: false
}
]