Changes between Version 12 and Version 13 of S3/ConsentTracking
- Timestamp:
- 06/12/19 08:00:02 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified S3/ConsentTracking
v12 v13 38 38 39 39 For the implementation of consent tracking, the framework provides the {{{auth_Consent}}} class which is available through {{{s3db}}}: 40 {{{ 40 {{{#!python 41 41 consent = s3db.auth_Consent() 42 42 }}} 43 43 44 44 The constructor can be given a list of processing type codes to limit it to these types of data processing, e.g.: 45 {{{ 45 {{{#!python 46 46 consent = s3db.auth_Consent(processing_types=["STOREPID", "SHAREPID"]) 47 47 }}}