aboutsummaryrefslogtreecommitdiffstats
path: root/config-default.yml
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-07-29 10:58:23 +0100
committerGravatar Gareth Coles <[email protected]>2018-07-29 10:58:23 +0100
commitf99d34e7582cfe9a06d90e8fc76d6aac581efd44 (patch)
tree49d0a218b330339c3b60ee2e3bf392b0294065f6 /config-default.yml
parent[Verification] Fix double-post in subscribe command (diff)
parentMerge branch 'clean_command' into 'master' (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'config-default.yml')
-rw-r--r--config-default.yml23
1 files changed, 18 insertions, 5 deletions
diff --git a/config-default.yml b/config-default.yml
index ee3e6a74e..05ff54cae 100644
--- a/config-default.yml
+++ b/config-default.yml
@@ -6,6 +6,16 @@ bot:
# Per channel, per tag.
tags: 60
+ clean:
+ # Maximum number of messages to traverse for clean commands
+ message_limit: 10000
+
+
+style:
+ colours:
+ soft_red: 0xcd6d6d
+ soft_green: 0x68c290
+
emojis:
defcon_disabled: "<:defcondisabled:470326273952972810>"
defcon_enabled: "<:defconenabled:470326274213150730>"
@@ -16,6 +26,7 @@ bot:
white_chevron: "<:whitechevron:418110396973711363>"
lemoneye2: "<:lemoneye2:435193765582340098>"
+ bullet: "\u2022"
pencil: "\u270F"
new: "\U0001F195"
@@ -117,10 +128,17 @@ urls:
site_schema: &SCHEMA "https://"
site_bigbrother_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/bigbrother"]
+ site_clean_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/clean"]
+ site_clean_logs: !JOIN [*SCHEMA, *DOMAIN, "/bot/clean_logs"]
site_docs_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/docs"]
site_facts_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/snake_facts"]
site_hiphopify_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/hiphopify"]
site_idioms_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/snake_idioms"]
+ site_infractions: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions"]
+ site_infractions_user: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/user/{user_id}"]
+ site_infractions_type: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/type/{infraction_type}"]
+ site_infractions_by_id: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/id/{infraction_id}"]
+ site_infractions_user_type_current: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/user/{user_id}/{infraction_type}/current"]
site_names_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/snake_names"]
site_off_topic_names_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/off-topic-names"]
site_quiz_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/snake_quiz"]
@@ -129,11 +147,6 @@ urls:
site_tags_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/tags"]
site_user_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/users"]
site_user_complete_api: !JOIN [*SCHEMA, *DOMAIN, "/bot/users/complete"]
- site_infractions: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions"]
- site_infractions_user: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/user/{user_id}"]
- site_infractions_type: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/type/{infraction_type}"]
- site_infractions_by_id: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/id/{infraction_id}"]
- site_infractions_user_type_current: !JOIN [*SCHEMA, *DOMAIN, "/bot/infractions/user/{user_id}/{infraction_type}/current"]
# Env vars
deploy: !ENV "DEPLOY_URL"