Skip to content

Commit c83b008

Browse files
authored
Update scheduled messages for frequency and content
1 parent 3e4746f commit c83b008

File tree

1 file changed

+2
-50
lines changed

1 file changed

+2
-50
lines changed

src/features/scheduled-messages.ts

Lines changed: 2 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const MESSAGE_SCHEDULE: MessageConfig[] = [
3737
*/
3838
{
3939
postTo: [
40-
{ interval: FREQUENCY.moreThanWeekly, channelId: CHANNELS.jobBoard },
40+
{ interval: FREQUENCY.weekly, channelId: CHANNELS.jobBoard },
4141
],
4242
message: async (channel) => {
4343
if (channel.type !== ChannelType.GuildText) {
@@ -72,58 +72,10 @@ Moderators may remove posts at any time, with or without warning. Repeat violato
7272
]);
7373
},
7474
},
75-
{
76-
postTo: [
77-
{ interval: FREQUENCY.moreThanWeekly, channelId: CHANNELS.helpJs },
78-
],
79-
message: {
80-
content: `This channel is good for specific questions about syntax, debugging a small (< ~50 lines of code) snippet of JS, without React involved. Question not getting answered? Maybe it's hard to answer, check out these resources for how to ask a good question:
81-
82-
How to ask for programming help <http://wp.me/p2oIwo-26>
83-
How do I ask a good question <https://stackoverflow.com/help/how-to-ask>
84-
`,
85-
},
86-
},
87-
{
88-
postTo: [{ interval: FREQUENCY.often, channelId: CHANNELS.helpReact }],
89-
message: {
90-
content: `This channel is good for specific questions about React, how React's features work, or debugging a small (< ~50 lines of code) snippet of JS that uses React. Question not getting answered? Maybe it's hard to answer, check out these resources for how to ask a good question:
91-
92-
How to ask for programming help <http://wp.me/p2oIwo-26>
93-
How do I ask a good question <https://stackoverflow.com/help/how-to-ask>
94-
`,
95-
},
96-
},
97-
{
98-
postTo: [
99-
{ interval: FREQUENCY.moreThanWeekly, channelId: CHANNELS.helpReact },
100-
],
101-
message: {
102-
content: `Check our the other channels too! This is our highest-traffic channel, which may mean your question gets missed as other discussions happen.
103-
104-
<#565213527673929729> For questions about pure Javscript problems.
105-
<#105765765117935616> For questions about CSS or other visual problems.
106-
<#145170347921113088> For questions about issues with your server code.
107-
<#105765859191975936> Get deeper review of a snippet of code.
108-
<#287623405946011648> If you have a question about your job or career, ask it in here.
109-
<#547620660482932737> Discussion of non-JS code, or that new laptop you're deciding on.
110-
<#108428584783220736> for questions about building, linting, generating, or otherwise processing your code.
111-
112-
Looking for work? Trying to hire? Check out <#103882387330457600>, or <https://reactiflux.com/jobs>
113-
114-
Has someone been really helpful? Shoutout who and what in <#798567961468076072>! We keep an eye in there as one way to find new MVPs. Give us all the reactions in there too!
115-
116-
Please remember our Code of Conduct: <https://reactiflux.com/conduct>
117-
and our guidelines for promotion: <https://reactiflux.com/promotion>
118-
119-
If you see anything that violates our rules, help alert the mods by reacting to it with 👎 or reporting it anonymously (right click > Apps > report message).
120-
`,
121-
},
122-
},
12375
{
12476
postTo: [{ interval: FREQUENCY.weekly, channelId: CHANNELS.random }],
12577
message: {
126-
content: `Have you read our Code of Conduct? <https://reactiflux.com/conduct>
78+
content: `Have you read our [Code of Conduct](<https://reactiflux.com/conduct>)?
12779
12880
Let us know if anything crosses a line: give it a 👎, or if you'd prefer to remain anonymous, let mods know from the message context menu (right click > Apps > report message) or with the form at <https://reactiflux.com/contact>`,
12981
},

0 commit comments

Comments
 (0)