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 * @author Naomi Carrigan
*/ */
const freeCodeCampHackathonChannels: Array<{ interface Channel {
channelId: string; channelId: string;
roleId: string; roleId: string;
name: 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", channelId: "1391165755772506283",
name: "team-aaryan-and-yoon", name: "team-aaryan-and-yoon",
@@ -70,11 +79,8 @@ const dallasSoftwareDevelopersCohortChannels = [
/** /**
* The channels to post standup reminders in. * The channels to post standup reminders in.
*/ */
export const channels: Array<{ export const channels: Array<Channel> = [
channelId: string;
roleId: string;
name: string;
}> = [
...freeCodeCampHackathonChannels, ...freeCodeCampHackathonChannels,
...dallasSoftwareDevelopersCohortChannels, ...dallasSoftwareDevelopersCohortChannels,
...nhcarriganMentorshipChannels,
]; ];