diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-07-11 16:06:25 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-07-11 16:06:25 +0200 |
| commit | 510c337117a77591400d7ee1d8d20ffd3ca2f731 (patch) | |
| tree | 6b9cac799a13c13b54905e29542fa11c342727ae /hyperkitty/fixtures | |
| parent | 5b18d42d67afc08f469ec216b1d55adeb19feda8 (diff) | |
| download | hyperkitty-510c337117a77591400d7ee1d8d20ffd3ca2f731.tar.gz hyperkitty-510c337117a77591400d7ee1d8d20ffd3ca2f731.tar.xz hyperkitty-510c337117a77591400d7ee1d8d20ffd3ca2f731.zip | |
Manage thread categories in the database
Diffstat (limited to 'hyperkitty/fixtures')
| -rw-r--r-- | hyperkitty/fixtures/first_start.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/hyperkitty/fixtures/first_start.json b/hyperkitty/fixtures/first_start.json new file mode 100644 index 0000000..5f056d6 --- /dev/null +++ b/hyperkitty/fixtures/first_start.json @@ -0,0 +1,42 @@ +[ + { + "pk": 1, + "model": "hyperkitty.threadcategory", + "fields": { + "color": "#3a87ad", + "name": "announce" + } + }, + { + "pk": 2, + "model": "hyperkitty.threadcategory", + "fields": { + "color": "#65cdd4", + "name": "question" + } + }, + { + "pk": 3, + "model": "hyperkitty.threadcategory", + "fields": { + "color": "#e084e0", + "name": "schedule" + } + }, + { + "pk": 4, + "model": "hyperkitty.threadcategory", + "fields": { + "color": "#f89406", + "name": "todo" + } + }, + { + "pk": 5, + "model": "hyperkitty.threadcategory", + "fields": { + "color": "#468847", + "name": "policy" + } + } +] |
