diff options
author | 2018-07-02 19:27:19 +0000 | |
---|---|---|
committer | 2018-07-02 19:27:19 +0000 | |
commit | f07a74c3ac7592747e6fd1d0ffe62ec65aa24c78 (patch) | |
tree | a8fe7d8ea8a2c754830014bc9b24a0ae216b39fa /pysite/tables.py | |
parent | Merge branch 'momo/optimize-team-list-v2' into 'master' (diff) | |
parent | Add a simple API for off-topic category names. (diff) |
Merge branch 'off-topic-channel-names-api' into 'master'
Add a simple API for off-topic category names.
See merge request python-discord/projects/site!13
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index de9499e8..784183f8 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -138,6 +138,12 @@ TABLES = { ]) ), + "off_topic_names": Table( # Names for the off-topic category channels + primary_key="name", + keys=("name",), + locked=False + ), + "snake_facts": Table( # Snake facts primary_key="fact", keys=sorted([ |