File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # Compliance Hub plugin
2+
3+ ## File structure
4+ File structure follows usual Countly plugin structure
5+ ```
6+ compliance-hub/
7+ ├── api/
8+ │ └── api.js # compliance hub API for managing user consent and related metrics
9+ ├── frontend/
10+ │ ├── public
11+ │ │ ├── javascripts
12+ │ │ │ ├── countly.models.js # model code for consent management
13+ │ │ │ └── countly.views.js # views code.
14+ │ │ ├── localization # all localization files
15+ │ │ ├── stylesheets
16+ │ │ └── templates
17+ │ │ ├── consentHistory.html # template for consent history table
18+ │ │ ├── exportHistory.html # template for export history
19+ │ │ ├── main.html # compliance hub header
20+ │ │ ├── metrics.html # consent metrics dashboard
21+ │ │ ├── user.html # user consent data table
22+ │ │ └── userConsentHistory.html # user consent history table
23+ │ └── app.js
24+ ├── install.js
25+ ├── package.json
26+ ├── README.md
27+ └── tests.js # plugin tests
28+ ```
You can’t perform that action at this time.
0 commit comments