Skip to content

Commit f80df30

Browse files
committed
Merge branch 'release/0.3.6' into main
2 parents 24d770a + 18da3e6 commit f80df30

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

edc_glucose/tests/models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from datetime import date
22

33
from django.db import models
4+
from edc_consent.managers import ConsentObjectsByCdefManager, CurrentSiteByCdefManager
45
from edc_identifier.model_mixins import NonUniqueSubjectIdentifierFieldMixin
56
from edc_model.models import BaseUuidModel
67
from edc_registration.model_mixins import UpdatesOrCreatesRegistrationModelMixin
@@ -40,5 +41,8 @@ class SubjectConsent(
4041

4142

4243
class SubjectConsentV1(SubjectConsent):
44+
objects = ConsentObjectsByCdefManager()
45+
on_site = CurrentSiteByCdefManager()
46+
4347
class Meta:
4448
proxy = True

0 commit comments

Comments
 (0)