Files
amari/src/config/progressReminders.ts
T
naomi 0b19d91444
Node.js CI / CI (push) Successful in 27s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m29s
feat: add alpha and omega reminder
2026-01-08 17:02:02 -08:00

50 lines
1.2 KiB
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { ProgressReminder } from "../interfaces/reminder.js";
const nhcarriganMentorshipChannels: Array<ProgressReminder> = [
{
channelId: "1400630073010163792",
createThread: true,
name: "accountability",
roleId: "1400588705273745550",
},
];
const freeCodeCampSprintChannels: Array<ProgressReminder> = [
{
channelId: "1424801426160488520",
createThread: true,
name: "JS Objects/Arrays/Loops",
roleId: "1425506225453273224",
},
{
channelId: "1424801426160488520",
createThread: true,
name: "Python Basics",
roleId: "1450187499912695838",
},
{
channelId: "1424801426160488520",
createThread: true,
name: "Miscellaneous Sprints",
roleId: "1450672361291513916",
},
{
channelId: "1442575112384811158",
createThread: false,
name: "Alpha and Omega",
roleId: "1458984977101230196",
},
];
/**
* The channels to post progress reminders in.
*/
export const progressReminders: Array<ProgressReminder> = [
...nhcarriganMentorshipChannels,
...freeCodeCampSprintChannels,
];