Skip to content

Commit

Permalink
Merge branch 'release/0.3.21' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 26, 2024
2 parents 6344edb + 3e893f1 commit af14b7a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions edc_fieldsets/tests/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from datetime import date

from django.db import models
from edc_consent.managers import ConsentObjectsByCdefManager, CurrentSiteByCdefManager
from edc_constants.choices import YES_NO
from edc_crf.model_mixins import CrfModelMixin, CrfWithActionModelMixin
from edc_identifier.model_mixins import NonUniqueSubjectIdentifierFieldMixin
Expand Down Expand Up @@ -33,6 +34,9 @@ class SubjectConsent(


class SubjectConsentV1(SubjectConsent):
objects = ConsentObjectsByCdefManager()
on_site = CurrentSiteByCdefManager()

class Meta:
proxy = True

Expand Down

0 comments on commit af14b7a

Please sign in to comment.