We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24d770a + 18da3e6 commit f80df30Copy full SHA for f80df30
edc_glucose/tests/models.py
@@ -1,6 +1,7 @@
1
from datetime import date
2
3
from django.db import models
4
+from edc_consent.managers import ConsentObjectsByCdefManager, CurrentSiteByCdefManager
5
from edc_identifier.model_mixins import NonUniqueSubjectIdentifierFieldMixin
6
from edc_model.models import BaseUuidModel
7
from edc_registration.model_mixins import UpdatesOrCreatesRegistrationModelMixin
@@ -40,5 +41,8 @@ class SubjectConsent(
40
41
42
43
class SubjectConsentV1(SubjectConsent):
44
+ objects = ConsentObjectsByCdefManager()
45
+ on_site = CurrentSiteByCdefManager()
46
+
47
class Meta:
48
proxy = True
0 commit comments