4b06f42db7
* sort of works * type fixes * added option to run old way too
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import type { TokenScopeData } from '@/modules/shared/domain/rolesAndScopes/types'
|
|
import { Scopes } from '@speckle/shared'
|
|
|
|
export const gatekeeperScopes: TokenScopeData[] = [
|
|
{
|
|
name: Scopes.Gatekeeper.WorkspaceBilling,
|
|
description: 'Scope for managing workspace billing',
|
|
public: false
|
|
}
|
|
]
|