forked from dhis2/data-administration-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathd2.config.js
More file actions
44 lines (43 loc) · 1.04 KB
/
d2.config.js
File metadata and controls
44 lines (43 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/** @type {import('@dhis2/cli-app-scripts').D2Config} */
const config = {
id: 'd685d128-3b31-4a21-adbf-bd1487c3004c',
type: 'app',
name: 'data-administration',
title: 'Data Administration',
coreApp: true,
minDHIS2Version: '2.41',
entryPoints: {
app: './src/App.jsx',
},
shortcuts: [
{
name: 'Data and metadata integrity',
url: '#/data-integrity',
},
{
name: 'Data and metadata maintenance',
url: '#/maintenance',
},
{
name: 'Resource tables',
url: '#/resourceTables',
},
{
name: 'Analytics tables',
url: '#/analytics',
},
{
name: 'Data statistics',
url: '#/data-statistics',
},
{
name: 'Lock exception',
url: '#/lock-exceptions',
},
{
name: 'Min/Max value generation',
url: '#/min-max-value-generation',
},
],
}
module.exports = config