-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.py
61 lines (47 loc) · 2.49 KB
/
variables.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# lambdacooler, the open-source slack watercooler.
# Copyright (C) 2021 Vanshaj Singhania
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from sensitive import *
### The following may need changing ###
GROUP_SIZE = 3
STARTER = "What is your most understated talent?"
### The following probably don't need changing ###
WELCOME_MSG = (
"Hello! I'm :sparkles: lambdacooler :sparkles:, your 61A-inspired "
"watercooler. I know what it's like to be one in a crowd, so I'm going to "
"help make you feel like you're a valuable part of staff (because you are!)"
".\n\nHow it works is simple. Each week, I'm going to group you with "
f"{GROUP_SIZE-1} other people (hopefully unique each time), and give you a "
"conversation starter to get you started. Want to be involved one week? "
"Join this channel. Don't want to be involved a different week? Leave this "
"channel and come back again when you want!\n\nThe first grouping will "
"occur tomorrow. I'll make group DMs with all of the groups in the morning"
". See you then! Let me know if you have any questions :tada:"
)
COOLER_MSG = (
"Hi! It's time to meet some cool people on staff :thefastestparrot:\n\n"
"Find a time to meet this week for >= 20 minutes, and get to know each "
"other :tada: When you meet, take a cool photo or screenshot and send it "
f"in <#{LAMBDACOOLER_CHANNEL}>!\n\nHere's this week's starter: {STARTER}"
)
COOLERS_SENT_MSG = (
"I've just sent out this week's coolers! Make sure to share a photo when "
"you meet, and react to each other's captions to decide which group's the "
"most creative :triumph:"
)
JOIN_REMINDER_MSG = (
f"Remember to join <#{LAMBDACOOLER_CHANNEL}> if you want to participate in "
"this week's groups! I'll make these groups around 4pm today :D"
)
### The following definitely don't need changing ###
APP_NAME = "lambdacooler" # unused
BASE_URL = "https://slack.com/api/{}"