Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
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
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
9cec0165
Commit
9cec0165
authored
3 years ago
by
Tore.Brede
Browse files
Options
Downloads
Patches
Plain Diff
GREG-165: Fixing some issues when checking for illegal updates
parent
c2fa319f
No related branches found
No related tags found
1 merge request
!239
GREG-165: Part 1 : Handle missing information from Feide
Pipeline
#109558
passed
3 years ago
Stage: venv update
Stage: tests and linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gregui/api/views/invitation.py
+10
-1
10 additions, 1 deletion
gregui/api/views/invitation.py
with
10 additions
and
1 deletion
gregui/api/views/invitation.py
+
10
−
1
View file @
9cec0165
...
@@ -362,6 +362,10 @@ class InvitedGuestView(GenericAPIView):
...
@@ -362,6 +362,10 @@ class InvitedGuestView(GenericAPIView):
illegal_field_updates
=
[]
illegal_field_updates
=
[]
for
changed_field
in
changed_fields
:
for
changed_field
in
changed_fields
:
if
changed_field
==
"
consents
"
:
# Consents can be inserted and updated, no need for further checks on them
continue
try
:
try
:
attribute
=
getattr
(
person
,
changed_field
)
attribute
=
getattr
(
person
,
changed_field
)
except
AttributeError
:
except
AttributeError
:
...
@@ -376,7 +380,12 @@ class InvitedGuestView(GenericAPIView):
...
@@ -376,7 +380,12 @@ class InvitedGuestView(GenericAPIView):
# No existing value for field, so allow change
# No existing value for field, so allow change
continue
continue
else
:
else
:
if
attribute
!=
person_data
[
changed_field
]:
# Quick fix to be able compare date with string
if
changed_field
==
"
date_of_birth
"
:
if
attribute
.
strftime
(
"
%Y-%m-%d
"
)
!=
person_data
[
changed_field
]:
# There is an existing date value
illegal_field_updates
.
append
(
changed_field
)
elif
attribute
!=
person_data
[
changed_field
]:
# There is an existing value
# There is an existing value
illegal_field_updates
.
append
(
changed_field
)
illegal_field_updates
.
append
(
changed_field
)
...
...
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