diff options
author | Magnus Hagander | 2018-02-21 17:31:54 +0000 |
---|---|---|
committer | Magnus Hagander | 2018-02-21 17:45:19 +0000 |
commit | b8274b5875a4742800307ed645f1137c10e2a09d (patch) | |
tree | fd91a0b4b27e7f822c8bedfcf976c5662b152621 /pgcommitfest/commitfest/util.py | |
parent | da4c56069c8f61dd7e8f499827618e527e1a4a1b (diff) |
Implement thread notification receiving
This allows the archivs server to ping the CF app to pick up updates to
mailthreads quicker.
Diffstat (limited to 'pgcommitfest/commitfest/util.py')
-rw-r--r-- | pgcommitfest/commitfest/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/util.py b/pgcommitfest/commitfest/util.py index 7a38c7b..84f543d 100644 --- a/pgcommitfest/commitfest/util.py +++ b/pgcommitfest/commitfest/util.py @@ -41,3 +41,4 @@ class DiffableModel(object): fields = [field.name for field in self._meta.fields] fields.extend([field.name for field in self._meta.many_to_many]) return model_to_dict(self, fields=fields) + |