summaryrefslogtreecommitdiff
path: root/packages/backend/src/models/schema/user-group.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-02-15 13:37:18 +0900
committerGitHub <noreply@github.com>2023-02-15 13:37:18 +0900
commit8caf288ac1c641b05a9bf25431e4a6a0d03c7777 (patch)
tree5f520674a2f2386b3e76e18666fe377e43b5f958 /packages/backend/src/models/schema/user-group.ts
parentdrop messaging (#9919) (diff)
downloadmisskey-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.ts34
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;