apiKey.js 265 B

1234567891011
  1. export function ApiKey(params = {}) {
  2. return {
  3. allowed_origins: '',
  4. id: 1,
  5. key: 'aa624bcc12024702a202cd90be5feda0',
  6. label: 'Default',
  7. scope_list: ['project:read', 'event:read', 'team:read', 'member:read'],
  8. status: 0,
  9. ...params,
  10. };
  11. }