|
1 | 1 | """Configuration values for Exercism Cogs."""
|
2 | 2 | # pylint: disable=C0301
|
| 3 | + |
| 4 | +CHANNEL_ID = { |
| 5 | + "Exercism #photos": 1203795616594010192, |
| 6 | + "Exercism #programming": 1157359032760287302, |
| 7 | + "Exercism #bootcamp-signup-questions": 1314074955880857731, |
| 8 | + "test": 1091223069407842306, |
| 9 | +} |
3 | 10 | # General
|
4 | 11 |
|
5 | 12 | GUILD_ID = 854117591135027261
|
|
141 | 148 | # Test channel in test server.
|
142 | 149 | 1091223069407842306: "This is a pinned message.",
|
143 | 150 | # Exercism #photo channel
|
144 |
| - 1203795616594010192: """\ |
| 151 | + CHANNEL_ID["Exercism #photos"]: """\ |
145 | 152 | > **📸 Pinned Reminder 📸**
|
146 |
| -> Use this channel to share photos of your pets, family, art, or anything else that is meaningful to you. |
| 153 | +> Use this channel to share photos you took of your pets, family, art, or anything else that is meaningful to you. |
147 | 154 | > If someone else's photo catches your eye, please use threads to discuss.
|
148 | 155 | > Thank you for being part of our Exercism community!""",
|
149 | 156 | 1326564185643024394: """\
|
150 | 157 | > **Pinned Reminder**
|
151 | 158 | > To keep things tidy in this channel, please remember to use threads when replying to people's posts. You can start a thread by hovering over the message you want to reply to, clicking on the `...` and then on "Create Thread". Thanks!""",
|
152 | 159 | # Exercism #programming
|
153 |
| - 1157359032760287302: """\ |
| 160 | + CHANNEL_ID["Exercism #programming"]: """\ |
154 | 161 | > ** Pinned Reminder **
|
155 | 162 | > To keep things tidy in this channel, please remember to use threads when replying to people's posts. You can start a thread by hovering over the message you want to reply to, clicking on the `...` and then on "Create Thread". Thanks!""",
|
156 |
| - # Exercism #bootcamp-signup-questions |
157 |
| - 1314074955880857731: """\ |
| 163 | + # Exercism |
| 164 | + CHANNEL_ID["Exercism #bootcamp-signup-questions"]: """\ |
158 | 165 | > ** Pinned Reminder **
|
159 | 166 | > If you're missing the #bootcamp role/color/channel, please double check you synced your Exercism account to Discord.
|
160 | 167 | > See <https://exercism.org/settings/integrations>. If you are synced and it still doesn't work, try unlinking and relinking :slight_smile:""",
|
161 | 168 | }
|
| 169 | + |
| 170 | +THREAD_REMINDER_CHANNELS = [ |
| 171 | + CHANNEL_ID["Exercism #photos"], |
| 172 | + CHANNEL_ID["Exercism #programming"], |
| 173 | + CHANNEL_ID["test"], |
| 174 | +] |
0 commit comments