-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05-ooc.tf
85 lines (75 loc) · 3.02 KB
/
05-ooc.tf
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
# ---- OOC ----
resource discord_category_channel ooc {
name = "Out of Character"
server_id = discord_server.nlp.id
position = discord_category_channel.bot_stuff.position + 1
}
resource discord_text_channel general {
name = "general"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
sync_perms_with_category = true
lifecycle { ignore_changes = [position] }
}
resource discord_text_channel questions {
name = "help-and-questions"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.general.position + 1
sync_perms_with_category = true
}
resource discord_text_channel science {
name = "science"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.questions.position + 1
sync_perms_with_category = true
}
resource discord_text_channel art {
name = "art"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.science.position + 1
sync_perms_with_category = true
}
resource discord_text_channel pets {
name = "pets"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.art.position + 1
sync_perms_with_category = true
}
resource discord_text_channel memes {
name = "memes"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.pets.position + 1
sync_perms_with_category = true
}
resource discord_text_channel lfg {
name = "looking-for-group"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.memes.position + 1
sync_perms_with_category = true
}
resource discord_text_channel quotes {
name = "quotes"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.lfg.position + 1
sync_perms_with_category = true
}
resource discord_text_channel general_voice_text {
name = "voice-no-mic"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
position = discord_text_channel.quotes.position + 1
sync_perms_with_category = true
}
resource discord_voice_channel general_voice {
name = "General"
server_id = discord_server.nlp.id
category = discord_category_channel.ooc.id
sync_perms_with_category = true
}