Files
speckle-server/packages/server/modules/gatekeeper/scopes.ts
T
Kristaps Fabians Geikins 4b06f42db7 chore(server): run TS files directly (no compilation) (#5134)
* sort of works

* type fixes

* added option to run old way too
2025-07-23 11:20:40 +02:00

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
}
]