-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdb_template.conf
More file actions
194 lines (181 loc) · 3.61 KB
/
db_template.conf
File metadata and controls
194 lines (181 loc) · 3.61 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
template {
community {
name = Test API Client
short_name = TAC
city = Dallas
state = TX
zip = 75204
sso_type = cas
sso_username_suffix = "@test-api-client"
custom_profile = [
{
id = 1
name = Classification
}
]
api_key = a
users = [
{
id = 101
username = tu1
email_address = "test-user-1@orgsync.com"
first_name = Test
last_name = User
password = 123
admin = true
profile = [
{
field_name = Classification
data = Admin
}
]
},
{
id = 201
username = u2
email_address = "user-2@orgsync.com"
first_name = Regular
last_name = User
password = 123
profile = [
{
field_name = Classification
data = Freshman
}
]
}
]
umbrellas = [
{
id = 50
long_name = Other Umbrella
short_name = Other
group = Development
}
]
portals = [
{
id = 52
long_name = Test Portal 1
short_name = TP1
umbrella = Other
group = Academic
default_join_group = Testers
users = [tu1, u2]
checkbooks = [
{
id = 1001
name = Test Checkbook
entries = [
{
id = 2001
description = an item
amount = 5.50
},
{
id = 2002
description = another item
amount = 19.99
}
]
}
]
},
{
id = 53
long_name = Test Portal 2
short_name = TP2
umbrella = Other
group = Test
}
]
events = [
{
id = 705
portal_short_name = TP1
title = My Event
description = This is going to be amazing...
},
{
id = 706
portal_short_name = TP2
title = TP2 Event
description = In the other org
}
]
timesheets = [
{
id = 500
portal_short_name = TP1
account_username = tu1
creator_username = tu1
description = Attended something
},
{
id = 501
portal_short_name = TP1
account_username = tu1
creator_username = tu1
description = Attended something else
},
{
id = 502
portal_short_name = TP2
account_username = u2
creator_username = u2
description = User 2 Attendance
},
{
id = 503
portal_short_name = TP2
account_username = u2
creator_username = u2
description = For an event
event_title = TP2 Event
}
]
identification_cards = [
{
id = 801
account_username = u2
number = 123
}
]
form_descriptions = [
{
id = 9001
name = Test Form
portal_short_name = TP1
},
{
id = 9052
name = Second Form
portal_short_name = TP2
}
]
form_submissions = [
{
id = 100001
form_description_name = Test Form
}
]
classifications = [
{
id = 2001
name = Testers
members = [
tu1
]
}
]
course_entries = [
{
id = 30001
name = Test Class
section = 301
link = "http://some.test.url"
account_username = tu1
}
]
}
}