diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-15 13:37:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-15 13:37:18 +0900 |
| commit | 8caf288ac1c641b05a9bf25431e4a6a0d03c7777 (patch) | |
| tree | 5f520674a2f2386b3e76e18666fe377e43b5f958 /packages/backend/src/models/schema/user-group.ts | |
| parent | drop messaging (#9919) (diff) | |
| download | misskey-8caf288ac1c641b05a9bf25431e4a6a0d03c7777.tar.gz misskey-8caf288ac1c641b05a9bf25431e4a6a0d03c7777.tar.bz2 misskey-8caf288ac1c641b05a9bf25431e4a6a0d03c7777.zip | |
drop group (#9942)
* drop group
* Update operations.ts
Diffstat (limited to 'packages/backend/src/models/schema/user-group.ts')
| -rw-r--r-- | packages/backend/src/models/schema/user-group.ts | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/packages/backend/src/models/schema/user-group.ts b/packages/backend/src/models/schema/user-group.ts deleted file mode 100644 index a73bf82bb8..0000000000 --- a/packages/backend/src/models/schema/user-group.ts +++ /dev/null @@ -1,34 +0,0 @@ -export const packedUserGroupSchema = { - type: 'object', - properties: { - id: { - type: 'string', - optional: false, nullable: false, - format: 'id', - example: 'xxxxxxxxxx', - }, - createdAt: { - type: 'string', - optional: false, nullable: false, - format: 'date-time', - }, - name: { - type: 'string', - optional: false, nullable: false, - }, - ownerId: { - type: 'string', - nullable: false, optional: false, - format: 'id', - }, - userIds: { - type: 'array', - nullable: false, optional: true, - items: { - type: 'string', - nullable: false, optional: false, - format: 'id', - }, - }, - }, -} as const; |