diff options
| author | 2019-08-28 09:44:24 +0200 | |
|---|---|---|
| committer | 2019-08-28 09:44:24 +0200 | |
| commit | 0977e1422824c1aed608d8c07d31678844c2d3cf (patch) | |
| tree | d8f7f7f35bd4ca2918838c0ba27512cec5bcae1a | |
| parent | Do not send log messages below DEBUG to the site. (diff) | |
| parent | Changing deleted messages log to point at staff-subdomain (diff) | |
Merge pull request #399 from python-discord/django-updating-bot-logs-url
Updating the deleted message front-end URL to the staff subdomain
| -rw-r--r-- | config-default.yml | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/config-default.yml b/config-default.yml index 2f5dcf5dc..e8ad1d572 100644 --- a/config-default.yml +++ b/config-default.yml @@ -237,6 +237,7 @@ urls:      site:        &DOMAIN       "pythondiscord.com"      site_api:    &API    !JOIN ["api.", *DOMAIN]      site_paste:  &PASTE  !JOIN ["paste.", *DOMAIN] +    site_staff:  &STAFF  !JOIN ["staff.", *DOMAIN]      site_schema: &SCHEMA       "https://"      site_bigbrother_api:                !JOIN [*SCHEMA, *API, "/bot/bigbrother"] @@ -249,7 +250,7 @@ urls:      site_infractions_user_type_current: !JOIN [*SCHEMA, *API, "/bot/infractions/user/{user_id}/{infraction_type}/current"]      site_infractions_user_type:         !JOIN [*SCHEMA, *API, "/bot/infractions/user/{user_id}/{infraction_type}"]      site_logs_api:                      !JOIN [*SCHEMA, *API, "/bot/logs"] -    site_logs_view:                     !JOIN [*SCHEMA, *DOMAIN, "/bot/logs"] +    site_logs_view:                     !JOIN [*SCHEMA, *STAFF, "/bot/logs"]      site_off_topic_names_api:           !JOIN [*SCHEMA, *API, "/bot/off-topic-names"]      site_reminders_api:                 !JOIN [*SCHEMA, *API, "/bot/reminders"]      site_reminders_user_api:            !JOIN [*SCHEMA, *API, "/bot/reminders/user"] | 
