Skip to content

Commit e15af89

Browse files
committed
Updated for-developers.md.
Signed-off-by: Pavel Erokhin (MairwunNx) <MairwunNx@gmail.com>
1 parent 9d62149 commit e15af89

File tree

1 file changed

+59
-1
lines changed

1 file changed

+59
-1
lines changed

documentation/for-developers.md

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
compile(
1212
group: "com.github.projectessentials",
1313
name: "ProjectEssentials-Permissions",
14-
version: "v1.14.4-1.0.1.0"
14+
version: "v1.14.4-1.1.0.0"
1515
)
1616
}
1717
```
@@ -57,6 +57,8 @@ If something goes according to the cunt, and your configuration flies, just dele
5757

5858
**Default configuration**:
5959

60+
Minimal configuration:
61+
6062
```json
6163
{
6264
"groups": [
@@ -81,6 +83,62 @@ If something goes according to the cunt, and your configuration flies, just dele
8183
}
8284
```
8385

86+
With default permissions:
87+
88+
```json
89+
{
90+
"groups": [
91+
{
92+
"name": "default",
93+
"isDefault": true,
94+
"permissions": [
95+
"native.help",
96+
"native.list",
97+
"native.me",
98+
"native.message",
99+
"native.teammsg",
100+
"native.tell",
101+
"native.trigger",
102+
"native.w",
103+
"native.event.modifyworld",
104+
"ess.warp",
105+
"ess.warp.set",
106+
"ess.warp.remove",
107+
"ess.chat",
108+
"ess.chat.mention.all",
109+
"ess.home",
110+
"ess.home.set",
111+
"ess.home.remove",
112+
"ess.spawn",
113+
"ess.afk",
114+
"ess.sendpos",
115+
"ess.tpaccept",
116+
"ess.tpdeny",
117+
"ess.tptoggle",
118+
"ess.tpaall",
119+
"ess.tpacancel",
120+
"ess.tpa",
121+
"ess.tpahere"
122+
],
123+
"inheritFrom": []
124+
},
125+
{
126+
"name": "owner",
127+
"isDefault": false,
128+
"permissions": ["*"],
129+
"inheritFrom": ["default"]
130+
}
131+
],
132+
"users": [
133+
{
134+
"nickname": "*",
135+
"group": "default",
136+
"permissions": []
137+
}
138+
]
139+
}
140+
```
141+
84142
### API Functions / Properties
85143

86144
```

0 commit comments

Comments
 (0)