Skip to content

Commit

Permalink
Merge branch 'release/0.3.81' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 25, 2024
2 parents 454a1e8 + 182d44b commit b513614
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions adverse_event_app/models.py
Expand Up @@ -3,6 +3,7 @@
from edc_action_item.models.action_model_mixin import ActionModelMixin
from edc_consent.field_mixins.identity_fields_mixin import IdentityFieldsMixin
from edc_consent.field_mixins.personal_fields_mixin import PersonalFieldsMixin
from edc_consent.managers import ConsentObjectsByCdefManager, CurrentSiteByCdefManager
from edc_consent.model_mixins import ConsentModelMixin
from edc_identifier.model_mixins import NonUniqueSubjectIdentifierModelMixin
from edc_model.models import BaseUuidModel
Expand Down Expand Up @@ -42,6 +43,9 @@ class Meta(ConsentModelMixin.Meta):


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

class Meta:
proxy = True

Expand Down
1 change: 1 addition & 0 deletions runtests.py
Expand Up @@ -45,6 +45,7 @@
"django.contrib.staticfiles",
"django.contrib.sites",
"django_crypto_fields.apps.AppConfig",
"multisite.apps.AppConfig",
"edc_auth.apps.AppConfig",
"edc_action_item.apps.AppConfig",
"edc_adverse_event.apps.AppConfig",
Expand Down

0 comments on commit b513614

Please sign in to comment.