-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathlowdefy.yaml
78 lines (70 loc) · 1.93 KB
/
lowdefy.yaml
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
name: lowdefy-example-case-management
lowdefy: 4.0.1
license: MIT
connections:
- id: tickets
type: MongoDBCollection
properties:
databaseUri:
_secret: EXAMPLES_MDB
databaseName: example-case-management
collection: tickets
write: true
menus:
- id: default
links:
- id: tickets
type: MenuLink
pageId: tickets
properties:
icon: AiOutlineProfile
title: Tickets
- id: new-ticket
type: MenuLink
pageId: new-ticket
properties:
icon: AiOutlineAlert
title: New Ticket
global:
statuses:
- Investigation Started
- Client Contacted
- Awaiting Confirmation
# Maps of colors and icons for statuses and actions
statusColors:
New: "#722ed1"
Investigation Started: "#1890ff"
Client Contacted: "#13c2c2"
Awaiting Confirmation: "#7cb305"
Escalated: "#faad14"
Closed: "#bfbfbf"
actionColors:
Created: "#722ed1"
Changed status to Investigation Started: "#1890ff"
Changed status to Client Contacted: "#13c2c2"
Changed status to Awaiting Confirmation: "#7cb305"
Escalated: "#faad14"
Flagged: "#f5222d"
Removed flag: "#bfbfbf"
Commented: "#bfbfbf"
Closed: "#52c41a"
statusIcons:
New: AiOutlinePlusCircle
Escalated: AiOutlineExclamationCircle
Investigation Started: AiOutlineTool
Client Contacted: AiOutlineSound
Awaiting Confirmation: AiOutlineLike
Closed: AiOutlineStop
actionIcons:
Created: AiOutlinePlusCircle
Changed status to Investigation Started: AiOutlineTool
Changed status to Client Contacted: AiOutlineSound
Changed status to Awaiting Confirmation: AiOutlineLike
Escalated: AiOutlineExclamationCircle
Flagged: AiOutlineFlag
Removed flag: AiOutlineFlag
Commented: AiOutlineMessage
Closed: AiOutlineStop
pages:
- _ref: pages/tickets/tickets.yaml
- _ref: pages/new-ticket/new-ticket.yaml