Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Owen Moore sales channel #468

Merged
merged 1 commit into from
Feb 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ProjectConfig/channels.json
Original file line number Diff line number Diff line change
Expand Up @@ -809,5 +809,8 @@
},
"1061341199841099777": {
"name": "ixnayokay-sales"
},
"1077311249701945504": {
"name": "owmo-sales"
}
}
5 changes: 5 additions & 0 deletions src/Utils/activityTriager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const STEVIE_P_LISTINGS = projectConfig.chIdByName['stevie-p-listings']

const IXNAYOKAY_SALES = projectConfig.chIdByName['ixnayokay-sales']

const OWMO_SALES = projectConfig.chIdByName['owmo-sales']

const PLOTTABLES_SALES = projectConfig.chIdByName['plottables-sales']
const PLOTTABLES_LISTINGS = projectConfig.chIdByName['plottables-listings']

Expand Down Expand Up @@ -155,6 +157,9 @@ export function sendEmbedToSaleChannels(
if (artBlocksData.artist.includes('ixnayokay')) {
sendEmbedToChannel(bot, embed, IXNAYOKAY_SALES)
}
if (artBlocksData.artist.includes('Owen Moore')) {
sendEmbedToChannel(bot, embed, OWMO_SALES)
}
if (artBlocksData.platform.includes('Plottables')) {
sendEmbedToChannel(bot, embed, PLOTTABLES_SALES)
}
Expand Down