Files
speckle-server/packages/server/modules/auth/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

17 lines
299 B
JavaScript

'use strict'
const { Scopes } = require('@speckle/shared')
module.exports = [
{
name: Scopes.Apps.Read,
description: 'See created or authorized applications.',
public: false
},
{
name: Scopes.Apps.Write,
description: 'Register new applications.',
public: false
}
]