diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a34e0cf4..8215ac023 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ > Versioning is by dates (in `yy.mm.dd` format). + + ??.??.?? ======== - Updated all dependencies. - Subfolders were re-arranged. Basically, the old frontend (ExtJS), its tests (playwright), and the Django Project (`./parkour_app`) are now under `./backend`. Meanwhile, there's a new frontend under development, using ViteJS; and it's under `./frontend` subfolder. Also, there's a new Dockerfile, and container, for it. -- Added a 'Solicite approval via e-mail' context menu option for sequencing requests that belong users with both their own and their pi's email address at same server as the admin (`settings.SERVER_EMAIL`). - A new column (`Pool Paths`) was added tot he 'Libraries and Samples' section of the app, to easily find where each sample (or lib) was loaded. - Staff users will find a new calendar icon that takes them to 'Duties', our first module using the new VueJS framework. Over there, we'll be keeping track of our rotations as to who is responsible of what (e.g. X person from Bioinformatics Facility is in charge of processing the short-read sequence data for ~3 months). diff --git a/backend/common/models.py b/backend/common/models.py index 6591b6351..6ae218e62 100644 --- a/backend/common/models.py +++ b/backend/common/models.py @@ -124,7 +124,7 @@ def paperless_approval(self): and self.email.split("@")[1] == settings.SERVER_EMAIL.split("@")[1] ): result_user = True - return result_user and result_pi # and not self.is_pi + return False # result_user and result_pi # and not self.is_pi def __str__(self): this_user_email = self.email