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
6b139807
Commit
6b139807
authored
3 years ago
by
Jonas Braathen
Browse files
Options
Downloads
Patches
Plain Diff
Fix linting errors
parent
d6429379
No related branches found
No related tags found
1 merge request
!41
Identity model changes
Pipeline
#91887
passed
3 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
greg/api/serializers/person.py
+3
-3
3 additions, 3 deletions
greg/api/serializers/person.py
greg/tests/api/test_person.py
+0
-1
0 additions, 1 deletion
greg/tests/api/test_person.py
greg/tests/models/test_person.py
+1
-1
1 addition, 1 deletion
greg/tests/models/test_person.py
with
4 additions
and
5 deletions
greg/api/serializers/person.py
+
3
−
3
View file @
6b139807
...
...
@@ -39,10 +39,10 @@ class IdentitySerializer(serializers.ModelSerializer):
# If the type is a specific ID type, then duplicates are not expected
return
Identity
.
objects
.
filter
(
type
=
identity_type
).
filter
(
value
=
value
).
exists
()
def
validate
(
self
,
d
at
a
):
if
self
.
is_duplicate
(
d
at
a
[
"
type
"
],
d
at
a
[
"
value
"
]):
def
validate
(
self
,
at
trs
):
if
self
.
is_duplicate
(
at
trs
[
"
type
"
],
at
trs
[
"
value
"
]):
raise
ValidationError
(
"
Identity already exists
"
)
return
d
at
a
return
at
trs
class
ConsentTypeSerializerBrief
(
serializers
.
ModelSerializer
):
...
...
This diff is collapsed.
Click to expand it.
greg/tests/api/test_person.py
+
0
−
1
View file @
6b139807
...
...
@@ -2,7 +2,6 @@ import datetime
from
typing
import
Dict
import
pytest
from
django.core.exceptions
import
ValidationError
from
rest_framework
import
status
from
rest_framework.reverse
import
reverse
from
rest_framework.status
import
HTTP_200_OK
...
...
This diff is collapsed.
Click to expand it.
greg/tests/models/test_person.py
+
1
−
1
View file @
6b139807
from
datetime
import
datetime
,
timedelta
from
datetime
import
timedelta
from
functools
import
partial
import
pytest
...
...
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