Skip to content

Commit

Permalink
Merge branch 'release/0.3.50' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 8, 2024
2 parents 3918ceb + 8110655 commit 7e77b39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion screening_app/consents.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from edc_protocol.research_protocol_config import ResearchProtocolConfig

consent_v1 = ConsentDefinition(
model="screening_app.subjectconsent",
model="screening_app.subjectconsentv1",
start=ResearchProtocolConfig().study_open_datetime,
end=ResearchProtocolConfig().study_close_datetime,
gender=["M", "F"],
Expand Down
5 changes: 5 additions & 0 deletions screening_app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,8 @@ class SubjectConsent(

class Meta(ConsentModelMixin.Meta):
pass


class SubjectConsentV1(SubjectConsent):
class Meta:
proxy = True

0 comments on commit 7e77b39

Please sign in to comment.