-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.js
51 lines (51 loc) · 1.36 KB
/
api.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
export const CONFIG = {
api: {
github: {
rest: "https://api.github.com",
gql: "https://api.github.com/graphql",
}
},
owner: "LexMachinaInc",
repo: "deus_lex",
buckets: [
{title: "Backlog", key: "backlog", label: "0 - Backlog" },
{title: "Ready", key: "ready", label: "1 - Ready" },
{title: "Working", key: "working", label: "2 - Working" },
{title: "Done", key: "done", label: "3 - Done" },
{title: "Closed", key: "closed" },
],
meetings: {
design: "DESIGN MEETING",
development: "DEVELOPMENT MEETING",
frontend: "FRONTEND TEAM MEETING",
fullstack: "FULL-STACK MEETING",
nlp: "NLP MEETING",
},
queries: {
buckets: {
labels: {
backlog: `-label:\"1 - Ready\" -label:\"2 - Working\" -label:\"3 - Done\" -label:\"[zube]: Ready\" -label:\"[zube]: In Progress\" -label:\"[zube]: Done\"`,
ready: `label:\"1 - Ready\"`,
working: `label:\"2 - Working\"`,
done: `label:\"3 - Done\"`,
}
},
meetings: {
design: {
labels: `label:\"Design Meeting\"`
},
development: {
labels: `label:\"Development Meeting\"`
},
frontend: {
labels: `label:\"Front End Team Meeting\"`
},
fullstack: {
labels: `label:\"Full-Stack Meeting\"`
},
nlp: {
labels: `label:\"NLP Meeting\"`
}
}
}
}