| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | Require authentication to use the API. | 2018-08-15 | -3/+6 | |
| | | ||||
| * | Use `TokenAuthentication` instead of API keys. | 2018-08-15 | -11/+7 | |
| | | ||||
| * | Add `api` to `INSTALLED_APPS`. | 2018-08-15 | -27/+28 | |
| | | ||||
| * | Add bot API key permission check. | 2018-08-14 | -0/+19 | |
| | | ||||
| * | Add `api.` subdomain to host configuration. | 2018-08-14 | -1/+1 | |
| | | ||||
| * | Add subdomains to `ALLOWED_HOSTS`. | 2018-08-13 | -2/+14 | |
| | | ||||
| * | Namespace `home:index` URL. | 2018-08-13 | -1/+1 | |
| | | ||||
| * | Add base & navbar templates. | 2018-08-13 | -0/+35 | |
| | | ||||
| * | Add static files. | 2018-08-13 | -0/+9732 | |
| | | ||||
| * | Add regular URLconf. | 2018-08-13 | -4/+13 | |
| | | ||||
| * | Add the `home` app. | 2018-08-11 | -21/+21 | |
| | | ||||
| * | Remove nested URLconfs. | 2018-08-11 | -60/+7 | |
| | | ||||
| * | Use `django-environ` and PostgreSQL. | 2018-08-11 | -15/+22 | |
| | | ||||
| * | Rename `pydis_django` to `pysite`. | 2018-08-11 | -0/+221 | |
| | | ||||
| * | Initial project layout for django | 2018-08-07 | -16310/+0 | |
| | | ||||
| * | Merge branch 'bugfix/fix-expired-record-unhiphopification-message' into 'master' | 2018-07-31 | -3/+2 | |
| |\ | | | | | | | | | | | | | Fix expiry checking when unhophipifying. Closes bot#29 See merge request python-discord/projects/site!29 | |||
| | * | Fix expiry checking when unhophipifying. | 2018-07-28 | -3/+2 | |
| | | | ||||
| * | | Merge branch 'enhancement/delete-otname-route' into 'master' | 2018-07-29 | -11/+36 | |
| |\ \ | | | | | | | | | | | | | Add `DELETE` route to `off-topic-names` endpoint. See merge request python-discord/projects/site!28 | |||
| | * | | Add `DELETE` route to `off-topic-names` endpoint. | 2018-07-28 | -11/+36 | |
| | |/ | ||||
| * | | Addressing gdude comments | 2018-07-29 | -28/+38 | |
| | | | ||||
| * | | Support for embeds and attachments. | 2018-07-29 | -1/+4 | |
| | | | ||||
| * | | Merge branch 'master' into clean_command | 2018-07-28 | -7/+621 | |
| |\ \ | ||||
| | * | | Fix typo in infractions table definition | 2018-07-28 | -1/+1 | |
| | |/ | ||||
| | * | Fix unit test | 2018-07-27 | -1/+1 | |
| | | | ||||
| | * | Fix a couple dumb mistakes | 2018-07-27 | -1/+3 | |
| | | | ||||
| | * | Don't remove basic user objects, add API for querying them | 2018-07-27 | -5/+30 | |
| | | | | | | | | | Also update privacy policy in accordance with this | |||
| | * | Tweaks to the Infractions API for the bot | 2018-07-26 | -18/+45 | |
| | | | ||||
| | * | Infraction system API to replace Rowboat | 2018-07-21 | -2/+562 | |
| | | | ||||
| * | | Now doing role colorization instead of random colors for the cleanlog template. | 2018-07-22 | -33/+24 | |
| | | | ||||
| * | | Completed the clean API and the clean frontend. | 2018-07-21 | -0/+117 | |
| |/ | ||||
| * | Merge branch 'update-dev-env' into 'master' | 2018-07-18 | -3/+7 | |
| |\ | | | | | | | | | update dev env See merge request python-discord/projects/site!18 | |||
| | * | updates docker-compose, changes default rdb port and handles a socket error ↵ | 2018-07-08 | -3/+7 | |
| | | | | | | | | | in service discovery | |||
| * | | Prevent Google from indexing login-redirecting pages | 2018-07-15 | -1/+4 | |
| | | | ||||
| * | | Add the big-brother API. | 2018-07-12 | -0/+126 | |
| | | | ||||
| * | | Check that the page is not NoneType before checking that the page has no ↵ | 2018-07-11 | -10/+11 | |
| | | | | | | | | | content to prevent trying to NoneType.get() | |||
| * | | Fix robots.txt for main blueprint | 2018-07-11 | -1/+1 | |
| | | | ||||
| * | | Do not add lock to page if there is no content on it | 2018-07-10 | -1/+4 | |
| | | | ||||
| * | | All domains: sitemap.xml and robots.txt | 2018-07-10 | -0/+173 | |
| | | | ||||
| * | | Allow numbers in channel names. | 2018-07-09 | -1/+1 | |
| |/ | ||||
| * | Remove space from end of `JAMMERS_ROLE` id in constants.py | 2018-07-06 | -1/+1 | |
| | | ||||
| * | Settings route | 2018-07-05 | -0/+64 | |
| | | ||||
| * | Revamp jam index, add winner team staff backend and user frontend | 2018-07-04 | -2/+49 | |
| | | ||||
| * | Fix typo in table editor post | 2018-07-02 | -1/+1 | |
| | | ||||
| * | Add a simple API for off-topic category names. | 2018-07-02 | -0/+89 | |
| | | ||||
| * | Optimize the team list, again. | 2018-07-02 | -8/+11 | |
| | | ||||
| * | Merge branch 'momo/enhance-jam-index' into 'master' | 2018-07-02 | -1/+15 | |
| |\ | | | | | | | | | Disable the join button if the user has already applied to a code jam See merge request python-discord/projects/site!7 | |||
| | * | Fix typo from last commit | 2018-06-19 | -1/+1 | |
| | | | ||||
| | * | Needs a self | 2018-06-19 | -1/+1 | |
| | | | ||||
| | * | Make it a class method (review comment) | 2018-06-19 | -6/+6 | |
| | | | ||||
| | * | Disable the join button if the user has already applied to a code jam | 2018-06-19 | -1/+15 | |
| | | | ||||