feat: let amari handle my progress reminders
Node.js CI / Lint and Test (push) Successful in 50s

This commit is contained in:
2025-10-06 16:53:41 -07:00
parent 593855d967
commit 36ad30e4a2
3 changed files with 137 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
interface Channel {
channelId: string;
roleId: string;
name: string;
createThread: boolean;
}
const nhcarriganMentorshipChannels: Array<Channel> = [
{
channelId: "1400630073010163792",
createThread: true,
name: "accountability",
roleId: "1400588705273745550",
},
];
const freeCodeCampSprintChannels: Array<Channel> = [
{
channelId: "1424801426160488520",
createThread: false,
name: "fsd sprints",
roleId: "1417979684754428054",
},
];
/**
* The channels to post progress reminders in.
*/
export const progressReminders: Array<Channel> = [
...nhcarriganMentorshipChannels,
...freeCodeCampSprintChannels,
];