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