Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
e2848cb8
Verified
Commit
e2848cb8
authored
4 years ago
by
Tom Teichler
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into 359-make-celery-non-optional
parents
d7b52b1b
26fabd33
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!491
Resolve "Make Celery non-optional"
Pipeline
#5913
passed
4 years ago
Stage: test
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
aleksis/core/mixins.py
+1
-2
1 addition, 2 deletions
aleksis/core/mixins.py
aleksis/core/models.py
+9
-4
9 additions, 4 deletions
aleksis/core/models.py
poetry.lock
+16
-33
16 additions, 33 deletions
poetry.lock
pyproject.toml
+0
-1
0 additions, 1 deletion
pyproject.toml
with
26 additions
and
40 deletions
aleksis/core/mixins.py
+
1
−
2
View file @
e2848cb8
...
...
@@ -20,7 +20,6 @@ from django.views.generic import CreateView, UpdateView
from
django.views.generic.edit
import
DeleteView
,
ModelFormMixin
import
reversion
from
dirtyfields
import
DirtyFieldsMixin
from
guardian.admin
import
GuardedModelAdmin
from
jsonstore.fields
import
IntegerField
,
JSONFieldMixin
from
material.base
import
Layout
,
LayoutNode
...
...
@@ -71,7 +70,7 @@ def _generate_one_to_one_proxy_property(field, subfield):
return
property
(
getter
,
setter
)
class
ExtensibleModel
(
DirtyFieldsMixin
,
models
.
Model
,
metaclass
=
_ExtensibleModelBase
):
class
ExtensibleModel
(
models
.
Model
,
metaclass
=
_ExtensibleModelBase
):
"""
Base model for all objects in AlekSIS apps.
This base model ensures all objects in AlekSIS apps fulfill the
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/models.py
+
9
−
4
View file @
e2848cb8
...
...
@@ -23,6 +23,7 @@ from django.utils.translation import gettext_lazy as _
import
jsonstore
from
cache_memoize
import
cache_memoize
from
dynamic_preferences.models
import
PerInstancePreferenceModel
from
model_utils
import
FieldTracker
from
model_utils.models
import
TimeStampedModel
from
phonenumber_field.modelfields
import
PhoneNumberField
from
polymorphic.models
import
PolymorphicModel
...
...
@@ -261,13 +262,15 @@ class Person(ExtensibleModel):
"""
Return the count of unread notifications for this person.
"""
return
self
.
unread_notifications
.
count
()
user_info_tracker
=
FieldTracker
(
fields
=
(
"
first_name
"
,
"
last_name
"
,
"
email
"
))
def
save
(
self
,
*
args
,
**
kwargs
):
# Determine all fields that were changed since last load
dirty
=
set
(
self
.
get_dirty_fields
().
keys
())
dirty
=
bool
(
self
.
user_info_tracker
.
changed
())
super
().
save
(
*
args
,
**
kwargs
)
if
self
.
user
and
(
set
((
"
first_name
"
,
"
last_name
"
,
"
email
"
))
&
dirty
)
:
if
self
.
user
and
dirty
:
# Synchronise user fields to linked User object to keep it up to date
self
.
user
.
first_name
=
self
.
first_name
self
.
user
.
last_name
=
self
.
last_name
...
...
@@ -433,10 +436,12 @@ class Group(SchoolTermRelatedExtensibleModel):
else
:
return
f
"
{
self
.
name
}
(
{
self
.
short_name
}
)
"
group_info_tracker
=
FieldTracker
(
fields
=
(
"
name
"
,
"
short_name
"
,
"
members
"
,
"
owners
"
))
def
save
(
self
,
force
:
bool
=
False
,
*
args
,
**
kwargs
):
# Determine state of object in relation to database
created
=
self
.
pk
is
not
None
dirty
=
set
(
self
.
g
et_dirty_fields
().
keys
())
created
=
self
.
pk
is
None
dirty
=
bool
(
self
.
g
roup_info_tracker
.
changed
())
super
().
save
(
*
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
poetry.lock
+
16
−
33
View file @
e2848cb8
...
...
@@ -464,14 +464,14 @@ django = "*"
[[
package
]]
name
=
"django-auth-ldap"
version
=
"2.
2
.0"
version
=
"2.
3
.0"
description
=
"Django LDAP authentication backend."
category
=
"main"
optional
=
true
python-versions
=
">
=
3.
5
"
python-versions
=
">
=
3.
6
"
[
package.dependencies
]
Django
=
">
=
1.11
"
Django
=
">
=
2.2
"
python-ldap
=
">
=
3.1
"
[[
package
]]
...
...
@@ -601,18 +601,6 @@ python-versions = ">=3.5"
Django
=
">
=
1.11
"
sqlparse
=
">
=
0.2
.
0
"
[[
package
]]
name
=
"django-dirtyfields"
version
=
"1.5.0"
description
=
"Tracking dirty fields on a Django model instance (actively maintained)"
category
=
"main"
optional
=
false
python-versions
=
"*"
[
package.dependencies
]
Django
=
">
=
1.11
"
pytz
=
">
=
2015.7
"
[[
package
]]
name
=
"django-dynamic-preferences"
version
=
"1.10.1"
...
...
@@ -773,7 +761,7 @@ python-versions = "*"
[[
package
]]
name
=
"django-material"
version
=
"1.7.
4
"
version
=
"1.7.
5
"
description
=
"Material design for django forms and admin"
category
=
"main"
optional
=
false
...
...
@@ -2041,7 +2029,7 @@ python-versions = "*"
[[
package
]]
name
=
"sphinx"
version
=
"3.5.
0
"
version
=
"3.5.
1
"
description
=
"Python documentation generator"
category
=
"dev"
optional
=
false
...
...
@@ -2066,9 +2054,9 @@ sphinxcontrib-qthelp = "*"
sphinxcontrib-serializinghtml
=
"*"
[
package.extras
]
lint
=
[
"docutils-stubs"
,
"flake8 (>=3.5.0)"
,
"isort"
,
"mypy (>=0.800)"
]
test
=
[
"pytest"
,
"pytest-cov"
,
"html5lib"
,
"cython"
,
"typed-ast"
]
docs
=
[
"sphinxcontrib-websupport"
]
lint
=
[
"flake8 (>=3.5.0)"
,
"isort"
,
"mypy (>=0.800)"
,
"docutils-stubs"
]
test
=
[
"pytest"
,
"pytest-cov"
,
"html5lib"
,
"cython"
,
"typed-ast"
]
[[
package
]]
name
=
"sphinx-autodoc-typehints"
...
...
@@ -2369,7 +2357,7 @@ ldap = ["django-auth-ldap"]
[
metadata
]
lock-version
=
"1.1"
python-versions
=
"^3.7"
content-hash
=
"
4ecaae98b2838548714b74be3dbe629bfa17bc9f56e43dcfb5cc465144522381
"
content-hash
=
"
70b2b90f0d23ad6037d01bcadd9002a442a8e9e16bc1d09f148c9e74a30f3a4c
"
[
metadata.files
]
alabaster
=
[
...
...
@@ -2560,8 +2548,8 @@ django-appconf = [
{file
=
"django_appconf-1.0.4-py2.py3-none-any.whl"
,
hash
=
"sha256:1b1d0e1069c843ebe8ae5aa48ec52403b1440402b320c3e3a206a0907e97bb06"
}
,
]
django-auth-ldap
=
[
{file
=
"django-auth-ldap-2.
2
.0.tar.gz"
,
hash
=
"sha256:
11af1773b08613339d2c3a0cec1308a4d563518f17b1719c3759994d0b4d04bf
"
}
,
{file
=
"django_auth_ldap-2.
2
.0-py3-none-any.whl"
,
hash
=
"sha256:
0ed2d88d81c39be915a9ab53b97ec0a33a3d16055518ab4c9bcffe8236d40370
"
}
,
{file
=
"django-auth-ldap-2.
3
.0.tar.gz"
,
hash
=
"sha256:
5894317122a086c9955ed366562869a81459cf6b663636b152857bb5d3a0a3b7
"
}
,
{file
=
"django_auth_ldap-2.
3
.0-py3-none-any.whl"
,
hash
=
"sha256:
cbbb476eff2504b5ab4fdf1fa92d93d2d3408fd9c8bc0c426169d987d0733153
"
}
,
]
django-bleach
=
[
{file
=
"django-bleach-0.6.1.tar.gz"
,
hash
=
"sha256:674709c26040618aff0741ce8261fd151e5ead405bd50568c2034662d69daac3"
}
,
...
...
@@ -2606,9 +2594,6 @@ django-debug-toolbar = [
{file
=
"django-debug-toolbar-2.2.tar.gz"
,
hash
=
"sha256:eabbefe89881bbe4ca7c980ff102e3c35c8e8ad6eb725041f538988f2f39a943"
}
,
{file
=
"django_debug_toolbar-2.2-py3-none-any.whl"
,
hash
=
"sha256:ff94725e7aae74b133d0599b9bf89bd4eb8f5d2c964106e61d11750228c8774c"
}
,
]
django-dirtyfields
=
[
{file
=
"django-dirtyfields-1.5.0.tar.gz"
,
hash
=
"sha256:7d7e8cf2fa153057cb4b51b5262c6f5b4594f23cd651e2f41746614bedfdf6f6"
}
,
]
django-dynamic-preferences
=
[
{file
=
"django-dynamic-preferences-1.10.1.tar.gz"
,
hash
=
"sha256:e4b2bb7b2563c5064ba56dd76441c77e06b850ff1466a386a1cd308909a6c7de"
}
,
{file
=
"django_dynamic_preferences-1.10.1-py2.py3-none-any.whl"
,
hash
=
"sha256:9419fa925fd2cbb665269ae72059eb3058bf080913d853419b827e4e7a141902"
}
,
...
...
@@ -2668,8 +2653,8 @@ django-maintenance-mode = [
{file
=
"django_maintenance_mode-0.15.1-py3-none-any.whl"
,
hash
=
"sha256:8c45b400253076655562c99a2ffb88f8353fc1c84496c1b9de812cc8132aea6f"
}
,
]
django-material
=
[
{file
=
"django-material-1.7.
4
.tar.gz"
,
hash
=
"sha256:
93af86e740b6db15a3b9df913c343217b198d7342a083db694acb319b49cb2dd
"
}
,
{file
=
"django_material-1.7.
4
-py2.py3-none-any.whl"
,
hash
=
"sha256:
70dcaa34b35dbc31fbdb7454c7a376358586d0f166abe15870e07e468d729425
"
}
,
{file
=
"django-material-1.7.
5
.tar.gz"
,
hash
=
"sha256:
d0df25b1d3ff629a4dfe2bc869550b25289f556940b45fd6d7c4897859446491
"
}
,
{file
=
"django_material-1.7.
5
-py2.py3-none-any.whl"
,
hash
=
"sha256:
141bdd1b3ded91be8c77f6de687523d63df986a559ec3eb82cd33f4af7d5983b
"
}
,
]
django-menu-generator-ng
=
[
{file
=
"django-menu-generator-ng-1.2.1.tar.gz"
,
hash
=
"sha256:06097f6611913a0770d633b6fc02cc83af1d427cc42a4048ceefe5f3a0f9d3ab"
}
,
...
...
@@ -2984,25 +2969,21 @@ pillow = [
{file
=
"Pillow-8.1.0-cp36-cp36m-macosx_10_10_x86_64.whl"
,
hash
=
"sha256:d355502dce85ade85a2511b40b4c61a128902f246504f7de29bbeec1ae27933a"
}
,
{file
=
"Pillow-8.1.0-cp36-cp36m-manylinux1_i686.whl"
,
hash
=
"sha256:93a473b53cc6e0b3ce6bf51b1b95b7b1e7e6084be3a07e40f79b42e83503fbf2"
}
,
{file
=
"Pillow-8.1.0-cp36-cp36m-manylinux1_x86_64.whl"
,
hash
=
"sha256:2353834b2c49b95e1313fb34edf18fca4d57446675d05298bb694bca4b194174"
}
,
{file
=
"Pillow-8.1.0-cp36-cp36m-manylinux2014_aarch64.whl"
,
hash
=
"sha256:1d208e670abfeb41b6143537a681299ef86e92d2a3dac299d3cd6830d5c7bded"
}
,
{file
=
"Pillow-8.1.0-cp36-cp36m-win32.whl"
,
hash
=
"sha256:dd9eef866c70d2cbbea1ae58134eaffda0d4bfea403025f4db6859724b18ab3d"
}
,
{file
=
"Pillow-8.1.0-cp36-cp36m-win_amd64.whl"
,
hash
=
"sha256:b09e10ec453de97f9a23a5aa5e30b334195e8d2ddd1ce76cc32e52ba63c8b31d"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-macosx_10_10_x86_64.whl"
,
hash
=
"sha256:b02a0b9f332086657852b1f7cb380f6a42403a6d9c42a4c34a561aa4530d5234"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-manylinux1_i686.whl"
,
hash
=
"sha256:ca20739e303254287138234485579b28cb0d524401f83d5129b5ff9d606cb0a8"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-manylinux1_x86_64.whl"
,
hash
=
"sha256:604815c55fd92e735f9738f65dabf4edc3e79f88541c221d292faec1904a4b17"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-manylinux2014_aarch64.whl"
,
hash
=
"sha256:cf6e33d92b1526190a1de904df21663c46a456758c0424e4f947ae9aa6088bf7"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-win32.whl"
,
hash
=
"sha256:47c0d93ee9c8b181f353dbead6530b26980fe4f5485aa18be8f1fd3c3cbc685e"
}
,
{file
=
"Pillow-8.1.0-cp37-cp37m-win_amd64.whl"
,
hash
=
"sha256:96d4dc103d1a0fa6d47c6c55a47de5f5dafd5ef0114fa10c85a1fd8e0216284b"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-macosx_10_10_x86_64.whl"
,
hash
=
"sha256:7916cbc94f1c6b1301ac04510d0881b9e9feb20ae34094d3615a8a7c3db0dcc0"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-manylinux1_i686.whl"
,
hash
=
"sha256:3de6b2ee4f78c6b3d89d184ade5d8fa68af0848f9b6b6da2b9ab7943ec46971a"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-manylinux1_x86_64.whl"
,
hash
=
"sha256:cdbbe7dff4a677fb555a54f9bc0450f2a21a93c5ba2b44e09e54fcb72d2bd13d"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-manylinux2014_aarch64.whl"
,
hash
=
"sha256:f50e7a98b0453f39000619d845be8b06e611e56ee6e8186f7f60c3b1e2f0feae"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-win32.whl"
,
hash
=
"sha256:cb192176b477d49b0a327b2a5a4979552b7a58cd42037034316b8018ac3ebb59"
}
,
{file
=
"Pillow-8.1.0-cp38-cp38-win_amd64.whl"
,
hash
=
"sha256:6c5275bd82711cd3dcd0af8ce0bb99113ae8911fc2952805f1d012de7d600a4c"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-macosx_10_10_x86_64.whl"
,
hash
=
"sha256:165c88bc9d8dba670110c689e3cc5c71dbe4bfb984ffa7cbebf1fac9554071d6"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-manylinux1_i686.whl"
,
hash
=
"sha256:5e2fe3bb2363b862671eba632537cd3a823847db4d98be95690b7e382f3d6378"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-manylinux1_x86_64.whl"
,
hash
=
"sha256:7612520e5e1a371d77e1d1ca3a3ee6227eef00d0a9cddb4ef7ecb0b7396eddf7"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-manylinux2014_aarch64.whl"
,
hash
=
"sha256:d673c4990acd016229a5c1c4ee8a9e6d8f481b27ade5fc3d95938697fa443ce0"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-win32.whl"
,
hash
=
"sha256:dc577f4cfdda354db3ae37a572428a90ffdbe4e51eda7849bf442fb803f09c9b"
}
,
{file
=
"Pillow-8.1.0-cp39-cp39-win_amd64.whl"
,
hash
=
"sha256:22d070ca2e60c99929ef274cfced04294d2368193e935c5d6febfd8b601bf865"
}
,
{file
=
"Pillow-8.1.0-pp36-pypy36_pp73-macosx_10_10_x86_64.whl"
,
hash
=
"sha256:a3d3e086474ef12ef13d42e5f9b7bbf09d39cf6bd4940f982263d6954b13f6a9"
}
,
...
...
@@ -3309,6 +3290,8 @@ restructuredtext-lint = [
{file
=
"ruamel.yaml.clib-0.2.2-cp38-cp38-manylinux1_x86_64.whl"
,
hash
=
"sha256:5254af7d8bdf4d5484c089f929cb7f5bafa59b4f01d4f48adda4be41e6d29f99"
}
,
{file
=
"ruamel.yaml.clib-0.2.2-cp38-cp38-win32.whl"
,
hash
=
"sha256:74161d827407f4db9072011adcfb825b5258a5ccb3d2cd518dd6c9edea9e30f1"
}
,
{file
=
"ruamel.yaml.clib-0.2.2-cp38-cp38-win_amd64.whl"
,
hash
=
"sha256:058a1cc3df2a8aecc12f983a48bda99315cebf55a3b3a5463e37bb599b05727b"
}
,
{file
=
"ruamel.yaml.clib-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:c6ac7e45367b1317e56f1461719c853fd6825226f45b835df7436bb04031fd8a"
}
,
{file
=
"ruamel.yaml.clib-0.2.2-cp39-cp39-manylinux1_x86_64.whl"
,
hash
=
"sha256:b4b0d31f2052b3f9f9b5327024dc629a253a83d8649d4734ca7f35b60ec3e9e5"
}
,
{file
=
"ruamel.yaml.clib-0.2.2.tar.gz"
,
hash
=
"sha256:2d24bd98af676f4990c4d715bcdc2a60b19c56a3fb3a763164d2d8ca0e806ba7"
}
,
]
rules
=
[
...
...
@@ -3347,8 +3330,8 @@ spdx-license-list = [
{file
=
"spdx_license_list-0.5.2.tar.gz"
,
hash
=
"sha256:952996f72ab807972dc2278bb9b91e5294767211e51f09aad9c0e2ff5b82a31b"
}
,
]
sphinx
=
[
{file
=
"Sphinx-3.5.
0
-py3-none-any.whl"
,
hash
=
"sha256:
68da66ca3d6b35b22bea5c53d938d5f8988663dca042f0a46429a1eba1010051
"
}
,
{file
=
"Sphinx-3.5.
0
.tar.gz"
,
hash
=
"sha256:
deb468efb3abaa70d790add4147d18782d86fdeacf648d6e8afb7a99807f1546
"
}
,
{file
=
"Sphinx-3.5.
1
-py3-none-any.whl"
,
hash
=
"sha256:
e90161222e4d80ce5fc811ace7c6787a226b4f5951545f7f42acf97277bfc35c
"
}
,
{file
=
"Sphinx-3.5.
1
.tar.gz"
,
hash
=
"sha256:
11d521e787d9372c289472513d807277caafb1684b33eb4f08f7574c405893a9
"
}
,
]
sphinx-autodoc-typehints
=
[
{file
=
"sphinx-autodoc-typehints-1.11.1.tar.gz"
,
hash
=
"sha256:244ba6d3e2fdb854622f643c7763d6f95b6886eba24bec28e86edf205e4ddb20"
}
,
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
0
−
1
View file @
e2848cb8
...
...
@@ -92,7 +92,6 @@ importlib-metadata = {version = "^3.0.0", python = "<3.9"}
django-model-utils
=
"^4.0.0"
bs4
=
"^0.0.1"
django-extensions
=
"^3.1.1"
django-dirtyfields
=
"^1.5.0"
ipython
=
"^7.20.0"
django-celery-results
=
"^2.0.1"
django-celery-beat
=
"^2.2.0"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment