Files
discordeno/packages/old/plugins/validations/src/attachments.ts
Awesome Stickz 80eabe5f44 Emoji rest methods (node-migration-clean) (#2713)
* feat: all emoji rest methods

* Fix code style issues with ESLint

Co-authored-by: Lint Action <lint-action@samuelmeuli.com>
2023-01-05 15:16:20 -06:00

10 lines
379 B
TypeScript

import type { Attachment, Bot } from '../deps.js'
export function validateAttachments (bot: Bot, attachments: Attachment[]) {
attachments.forEach((attachment) => {
if (attachment.description && !bot.utils.validateLength(attachment.description, { min: 0, max: 1024 })) {
throw new Error('Attachment description length must be less than 1024 characters')
}
})
}