diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e2801658f04b6b17666e5194debb0a8e0d7c1d61..cbaf83d68599cb67cdf44c53c4fc15a2cf02c604 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_. Unreleased ---------- +Added +~~~~~ + +* Add person column to invitations table + Changed ~~~~~~~ diff --git a/aleksis/core/tables.py b/aleksis/core/tables.py index ab19c80608f1a8966dab7ae2094eca7caf579252..f08460bd8654907cb56f655e01014342f8e59ab5 100644 --- a/aleksis/core/tables.py +++ b/aleksis/core/tables.py @@ -116,6 +116,7 @@ class InvitationCodeColumn(tables.Column): class InvitationsTable(tables.Table): """Table to list persons.""" + person_id = PersonColumn() email = tables.EmailColumn() sent = tables.DateColumn() inviter_id = PersonColumn()