We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec3bee commit f6beb56Copy full SHA for f6beb56
form_runners_app/consents.py
@@ -4,7 +4,7 @@
4
from edc_protocol.research_protocol_config import ResearchProtocolConfig
5
6
consent_v1 = ConsentDefinition(
7
- "form_runners_app.subjectconsent",
+ "form_runners_app.subjectconsentv1",
8
version="1",
9
start=ResearchProtocolConfig().study_open_datetime,
10
end=ResearchProtocolConfig().study_close_datetime,
form_runners_app/models.py
@@ -50,6 +50,11 @@ class SubjectConsent(
50
version = models.CharField(max_length=10)
51
52
53
+class SubjectConsentV1(SubjectConsent):
54
+ class Meta:
55
+ proxy = True
56
+
57
58
class OnSchedule(SiteModelMixin, BaseUuidModel):
59
subject_identifier = models.CharField(max_length=50)
60
0 commit comments