feat: add mentorship channel
Code Analysis / SonarQube (push) Failing after 17s
Node.js CI / Lint and Test (push) Successful in 38s

This commit is contained in:
2025-07-31 17:05:29 -07:00
parent 0441f1c68a
commit efaf3dce16
+14 -8
View File
@@ -4,12 +4,21 @@
* @author Naomi Carrigan
*/
const freeCodeCampHackathonChannels: Array<{
interface Channel {
channelId: string;
roleId: string;
name: string;
}> = [];
const dallasSoftwareDevelopersCohortChannels = [
}
const nhcarriganMentorshipChannels: Array<Channel> = [
{
channelId: "1400630073010163792",
name: "accountability",
roleId: "1400588705273745550",
},
];
const freeCodeCampHackathonChannels: Array<Channel> = [];
const dallasSoftwareDevelopersCohortChannels: Array<Channel> = [
{
channelId: "1391165755772506283",
name: "team-aaryan-and-yoon",
@@ -70,11 +79,8 @@ const dallasSoftwareDevelopersCohortChannels = [
/**
* The channels to post standup reminders in.
*/
export const channels: Array<{
channelId: string;
roleId: string;
name: string;
}> = [
export const channels: Array<Channel> = [
...freeCodeCampHackathonChannels,
...dallasSoftwareDevelopersCohortChannels,
...nhcarriganMentorshipChannels,
];