diff options
Diffstat (limited to 'src/models/repositories/muting.ts')
| -rw-r--r-- | src/models/repositories/muting.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/models/repositories/muting.ts b/src/models/repositories/muting.ts index b5bbe8a0a3..32e681bf0b 100644 --- a/src/models/repositories/muting.ts +++ b/src/models/repositories/muting.ts @@ -41,14 +41,12 @@ export const packedMutingSchema = { type: 'string' as const, optional: false as const, nullable: false as const, format: 'id', - description: 'The unique identifier for this muting.', example: 'xxxxxxxxxx', }, createdAt: { type: 'string' as const, optional: false as const, nullable: false as const, format: 'date-time', - description: 'The date that the muting was created.' }, muteeId: { type: 'string' as const, @@ -59,7 +57,6 @@ export const packedMutingSchema = { type: 'object' as const, optional: false as const, nullable: false as const, ref: 'User', - description: 'The mutee.' }, } }; |