You've already forked AstralRinth
forked from didirus/AstralRinth
Coolbot/reports remoderation environments (#4313)
* Update reports quick responses. * Edit env messages, add post approval stage. * Update moderation checklist and nags to account for environments overhaul * intl fix
This commit is contained in:
@@ -2,33 +2,69 @@ import type { ReportQuickReply } from '../types/reports'
|
||||
|
||||
export default [
|
||||
{
|
||||
label: 'Antivirus',
|
||||
message: async () => (await import('./messages/reports/antivirus.md?raw')).default,
|
||||
label: '✅⚖️ Action Taken',
|
||||
message: async () => (await import('./messages/reports/action-taken.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: 'Spam',
|
||||
label: '✅⚠️ Author Alerted',
|
||||
message: async () => (await import('./messages/reports/author-alerted.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '✅🏷️ Metadata Corrected',
|
||||
message: async () => (await import('./messages/reports/metadata-corrected.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌🏷️ Metadata Insufficient',
|
||||
message: async () => (await import('./messages/reports/metadata-insufficient.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌📤 Reupload Insufficient',
|
||||
message: async () => (await import('./messages/reports/reupload-insufficient.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌🏳️🌈 Spam',
|
||||
message: async () => (await import('./messages/reports/spam.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: 'Gameplay Issue',
|
||||
label: '❌🛡️ Antivirus',
|
||||
message: async () => (await import('./messages/reports/antivirus.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌👻 Functionality Disclosed',
|
||||
message: async () =>
|
||||
(await import('./messages/reports/functionality-disclosed.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌🤖 Suspected AI',
|
||||
message: async () => (await import('./messages/reports/suspected-ai.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌👩💻 Not a Hack',
|
||||
message: async () => (await import('./messages/reports/not-a-hack.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: '❌🕹️ Gameplay Issue',
|
||||
message: async () => (await import('./messages/reports/gameplay-issue.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: 'Platform Issue',
|
||||
label: '❌🎧 Platform Issue',
|
||||
message: async () => (await import('./messages/reports/platform-issue.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: 'Stale',
|
||||
label: '❌🪦 Stale',
|
||||
message: async () => (await import('./messages/reports/stale.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
{
|
||||
label: 'Confirmed Malware',
|
||||
message: async () => (await import('./messages/reports/confirmed-malware.md?raw')).default,
|
||||
private: false,
|
||||
},
|
||||
] as ReadonlyArray<ReportQuickReply>
|
||||
|
||||
Reference in New Issue
Block a user