1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/openapi/spec/permission-schema.ts
olav ab75d4085e
refactor: add schemas to user admin controller (#1692)
* refactor: add schemas to user admin controller

* refactor: remove unused SessionService

* refactor: fix search query type confusion

* refactor: add schemas to user controller (#1693)

* refactor: add schemas to user controller

* refactor: fix getAllUserSplashes method name

* refactor: name and email should not be required on create

* refactor: only some user fields may be updated

* refactor: should not require any fields on user update  (#1730)

* refactor: send 400 instead of 500 on missing username and email

* refactor: should not require any fields for user update

* refactor: note that earlier versions required name or email

* refactor: merge roleDescriptionSchema and roleSchema
2022-06-22 14:55:43 +02:00

23 lines
523 B
TypeScript

import { FromSchema } from 'json-schema-to-ts';
export const permissionSchema = {
$id: '#/components/schemas/permissionSchema',
type: 'object',
additionalProperties: false,
required: ['permission'],
properties: {
permission: {
type: 'string',
},
project: {
type: 'string',
},
environment: {
type: 'string',
},
},
components: {},
} as const;
export type PermissionSchema = FromSchema<typeof permissionSchema>;