generated from nhcarrigan/template
feat: add mentorship channel
This commit is contained in:
+14
-8
@@ -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,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user