Skip to content

Commit

Permalink
Merge branch 'release/0.3.9' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 26, 2024
2 parents b862e0e + 1829cab commit ef6c722
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions microbiology_app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from django.db import models
from django.db.models import PROTECT
from edc_consent.managers import ConsentObjectsByCdefManager, CurrentSiteByCdefManager
from edc_consent.model_mixins import ConsentVersionModelMixin
from edc_crf.model_mixins import CrfModelMixin
from edc_identifier.managers import SubjectIdentifierManager
Expand Down Expand Up @@ -38,6 +39,9 @@ class SubjectConsent(


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

class Meta:
proxy = True

Expand Down

0 comments on commit ef6c722

Please sign in to comment.