-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboardConfig.js
82 lines (82 loc) · 1.99 KB
/
dashboardConfig.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
export default {
widgets: [
{name: 'structure-menu'},
{
name: 'zeit/deployments',
options: {
projectId: 'QmYr8hgzidSZeu2ggUoHAJb2u6wL1tymAwmKiix9Rm74ao',
teamId: 'team_ZFbTi9jEAfKNwkjn0KYNtJuo',
signinUrl: '/api/zeit/oauth/signin',
signoutUrl: '/api/zeit/oauth/signout',
tokensUrl: '/api/zeit/oauth/tokens'
}
},
{
name: 'zeit/deployments',
options: {
projectId: 'QmbSuayTqpZsNzst7EywLskxEqcCbTwT2arUUsPGHfcxZ7',
teamId: 'team_ZFbTi9jEAfKNwkjn0KYNtJuo',
signinUrl: '/api/zeit/oauth/signin',
signoutUrl: '/api/zeit/oauth/signout',
tokensUrl: '/api/zeit/oauth/tokens'
}
},
{
name: 'ga/graph',
options: {
profileId: 'ga:196245173',
signinUrl: '/api/google/oauth/signin',
signoutUrl: '/api/google/oauth/signout',
tokensUrl: '/api/google/oauth/tokens'
}
},
{
name: 'ga/realtime',
options: {
profileId: 'ga:196245173',
signinUrl: '/api/google/oauth/signin',
signoutUrl: '/api/google/oauth/signout',
tokensUrl: '/api/google/oauth/tokens'
}
},
{
name: 'project-info',
options: {
data: [
{
category: 'Code',
title: 'Studio',
value: 'https://github.com/transclusion/studio'
},
{
category: 'Code',
title: 'Website',
value: 'https://github.com/transclusion/web'
},
{
category: 'Sites',
title: 'Site',
value: 'https://transclusion.org'
}
]
}
},
{name: 'project-users'},
{
name: 'document-list',
options: {
title: 'Articles',
order: '_updatedAt desc',
types: ['article']
}
},
{
name: 'document-list',
options: {
title: 'People',
order: '_updatedAt desc',
types: ['person']
}
}
]
}