-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.example.json
More file actions
54 lines (51 loc) · 1.71 KB
/
Copy pathusers.example.json
File metadata and controls
54 lines (51 loc) · 1.71 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
{
"_comment": "Copy this file to users.json and replace the placeholder values with your team's real Discord IDs, display names, and avatar URLs. users.json is gitignored — never commit it.",
"primary": "owner",
"members": {
"owner": {
"discordId": "111111111111111111",
"displayName": "Project Owner",
"avatarUrl": "https://github.com/your-username.png",
"square": "🟥",
"isBot": false
},
"collaborator-a": {
"discordId": "222222222222222222",
"displayName": "Collaborator A",
"avatarUrl": "https://github.com/collaborator-a.png",
"square": "🟦",
"isBot": false
},
"collaborator-b": {
"discordId": "333333333333333333",
"displayName": "Collaborator B",
"avatarUrl": "https://github.com/collaborator-b.png",
"square": "🟪",
"isBot": false
},
"backend-bot": {
"discordId": "444444444444444444",
"displayName": "Backend Bot",
"avatarUrl": "https://example.com/backend-bot-avatar.png",
"square": "🟦",
"isBot": true
},
"frontend-bot": {
"discordId": "555555555555555555",
"displayName": "Frontend Bot",
"avatarUrl": "https://example.com/frontend-bot-avatar.png",
"square": "🟩",
"isBot": true
},
"qa-bot": {
"discordId": "666666666666666666",
"displayName": "QA Bot",
"avatarUrl": "https://example.com/qa-bot-avatar.png",
"square": "🟨",
"isBot": true
}
},
"additionalKnownBotIds": [
"_comment: Other bot Discord IDs that should be filtered from the inbound relay (echo-loop prevention). Optional."
]
}