aboutsummaryrefslogtreecommitdiffstats
path: root/postgres (unfollow)
Commit message (Collapse)AuthorLines
2021-12-11Bump django from 3.1.13 to 3.1.14Gravatar dependabot[bot]-5/+5
Bumps [django](https://github.com/django/django) from 3.1.13 to 3.1.14. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.1.13...3.1.14) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
2021-12-11Use new approx message count viewGravatar Chris Lovering-5/+3
We have added a new view to metricity that will keep track of an approximate message count, updating every 10 seconds. By doing this, we avoid running a query against the whole message table every time we want to get a user's messages.
2021-12-10Remove myself from the codeownersGravatar Matteo Bertucci-9/+4
2021-11-27Update `django-filter` for new Django versionGravatar Johannes Christ-7/+7
2021-11-27Migrate to generic `JSONField`Gravatar Johannes Christ-5/+28
2021-11-26Bump django from 3.0.14 to 3.1.13Gravatar dependabot[bot]-6/+7
Bumps [django](https://github.com/django/django) from 3.0.14 to 3.1.13. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.0.14...3.1.13) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
2021-11-26Clean Up Static Deploys ReadmeGravatar Hassan Abouelela-6/+8
Reorganize the static deploy readme, and clarify the content.
2021-11-26Fix Typo In Static TaskGravatar Hassan Abouelela-1/+1
2021-11-26Patch signals to use post_delete, instead of pre_deleteGravatar D0rs4n-5/+4
From now on the signal will only get executed after the Role has been deleted The commit also introduces minor changes in the tests of roles
2021-11-26Patch roles test to use fresh instance from the DBGravatar D0rs4n-0/+1
2021-11-26Add test to check role unassignmentGravatar D0rs4n-1/+21
Create a test that checks if a role gets deleted it will also get unassigned from the user
2021-11-26Create a signal to unassign roles from user when deletedGravatar D0rs4n-1/+22
Add a signal to the api app that automatically unassigns deleted roles from users that have them