aboutsummaryrefslogtreecommitdiffstats
path: root/LICENSE-SimpleMDE (unfollow)
Commit message (Collapse)AuthorLines
2019-09-18Nuke `pysite.dockerapp`.Gravatar Johannes Christ-42/+0
2019-09-16Add test cases for `TypeError` fallbacks.Gravatar Johannes Christ-0/+33
2019-09-15Fix a bug where GitHub API rate limit could crash Home.Gravatar Leon Sandøy-17/+34
The bug was caused by a naive approach to caching and retrieving the data. This commit rectifies this by making the following changes: - We will now cache for 1 hour instead of 10 minutes - If the data is stale but API is rate limited, return cache, not crash. - If the cache doesn't exist and API is rate limited, return dummy data, and try again in 10 minutes. This will prevent all crashes, and should still have more or less the same user experience.
2019-09-15PARENT_HOST is now pythondiscord.comGravatar Leon Sandøy-1/+1
2019-09-15Remove wiki, add pydis.Gravatar Leon Sandøy-2/+4
2019-09-15Darcula theme, and vanilla hosts.Gravatar Leon Sandøy-2/+93
2019-09-15Changing the ALLOWED_HOSTS to allow for migration.Gravatar Leon Sandøy-2/+2
Adding django.pythondiscord.com and django.api.pythondiscord.com to ALLOWED_HOSTS to allow us to run Djangoify and migrate the infraction data.
2019-09-15Update `ALLOWED_HOSTS` for the new home.Gravatar Johannes Christ-3/+2
2019-09-15Drop args to reduce line size under 100.Gravatar scragly-1/+3
2019-09-15Tag Django images as `latest`.Gravatar Johannes Christ-2/+2
2019-09-15Adding a pygments CSS for syntax highlighting.Gravatar Leon Sandøy-1/+75
This adds the Monokai, Friendly, and Darcula themes to this repo. It leaves Darcula as the active theme. This can very easily be changed later on by altering wiki/base.html Resolves #243.
2019-09-14Adding the UpdateModelMixin to the ReminderViewSet.Gravatar Leon Sandøy-2/+3
This will allow us to edit durations using the PATCH method, which the bot implements already but which was overlooked when this viewset was written.
2019-09-12Check for missing migrations in CI.Gravatar Johannes Christ-0/+1