From f1c3eed0699e15640731c4cd06f5feb198ef6553 Mon Sep 17 00:00:00 2001 From: ljacqu Date: Sat, 5 Dec 2015 21:19:20 +0100 Subject: [PATCH] Update permissions page --- .../authme/permission/PlayerPermission.java | 2 +- src/tools/docs/permission_nodes.md | 66 ++++++++++--------- 2 files changed, 35 insertions(+), 33 deletions(-) diff --git a/src/main/java/fr/xephi/authme/permission/PlayerPermission.java b/src/main/java/fr/xephi/authme/permission/PlayerPermission.java index 4ef0aca2e..8ae97407f 100644 --- a/src/main/java/fr/xephi/authme/permission/PlayerPermission.java +++ b/src/main/java/fr/xephi/authme/permission/PlayerPermission.java @@ -81,7 +81,7 @@ public enum PlayerPermission implements PermissionNode { SEE_OTHER_ACCOUNTS("authme.player.seeotheraccounts"), /** - * + * Permission to use all player (non-admin) commands. */ ALL_COMMANDS("authme.player.*"); diff --git a/src/tools/docs/permission_nodes.md b/src/tools/docs/permission_nodes.md index 309584e44..8e78dee43 100644 --- a/src/tools/docs/permission_nodes.md +++ b/src/tools/docs/permission_nodes.md @@ -1,41 +1,43 @@ - + ## AuthMe Permission Nodes The following are the permission nodes that are currently supported by the latest dev builds. -- **authme.command.admin.accounts** – Administrator command to see all accounts associated with an user. -- **authme.command.admin.changemail** – Administrator command to set or change the email adress of an user. -- **authme.command.admin.changepassword** – Administrator command to change the password of a user. -- **authme.command.admin.converter** – Administrator command to convert old or other data to AuthMe data. -- **authme.command.admin.firstspawn** – Administrator command to teleport to the first AuthMe spawn. -- **authme.command.admin.forcelogin** – Administrator command to force-login an existing user. -- **authme.command.admin.getemail** – Administrator command to get the email address of an user, if set. -- **authme.command.admin.getip** – Administrator command to get the last known IP of an user. -- **authme.command.admin.lastlogin** – Administrator command to see the last login date and time of an user. -- **authme.command.admin.purge** – Administrator command to purge old user data. -- **authme.command.admin.purgebannedplayers** – Administrator command to purge all data associated with banned players. -- **authme.command.admin.purgelastpos** – Administrator command to purge the last position of an user. -- **authme.command.admin.register** – Administrator command to register a new user. -- **authme.command.admin.reload** – Administrator command to reload the plugin configuration. -- **authme.command.admin.setfirstspawn** – Administrator command to set the first AuthMe spawn. -- **authme.command.admin.setspawn** – Administrator command to set the AuthMe spawn. -- **authme.command.admin.spawn** – Administrator command to teleport to the AuthMe spawn. -- **authme.command.admin.switchantibot** – Administrator command to toggle the AntiBot protection status. -- **authme.command.admin.unregister** – Administrator command to unregister an existing user. -- **authme.command.player.allow2accounts** – Permission for users to allow two accounts. -- **authme.command.player.bypassforcesurvival** – Permission for users to bypass force-survival mode. -- **authme.command.player.captcha** – Command permission to use captcha. -- **authme.command.player.changepassword** – Command permission to change the password. -- **authme.command.player.email.add** – Command permission to add an email address. -- **authme.command.player.email.change** – Command permission to change the email address. -- **authme.command.player.email.recover** – Command permission to recover an account using it's email address. -- **authme.command.player.login** – Command permission to login. -- **authme.command.player.logout** – Command permission to logout. -- **authme.command.player.register** – Command permission to register. -- **authme.command.player.seeotheraccounts** – Permission for user to see other accounts. -- **authme.command.player.unregister** – Command permission to unregister. +- **authme.admin.*** – Give access to all admin commands. +- **authme.admin.accounts** – Administrator command to see all accounts associated with a user. +- **authme.admin.changemail** – Administrator command to set or change the email address of a user. +- **authme.admin.changepassword** – Administrator command to change the password of a user. +- **authme.admin.converter** – Administrator command to convert old or other data to AuthMe data. +- **authme.admin.firstspawn** – Administrator command to teleport to the first AuthMe spawn. +- **authme.admin.forcelogin** – Administrator command to force-login an existing user. +- **authme.admin.getemail** – Administrator command to get the email address of a user, if set. +- **authme.admin.getip** – Administrator command to get the last known IP of a user. +- **authme.admin.lastlogin** – Administrator command to see the last login date and time of a user. +- **authme.admin.purge** – Administrator command to purge old user data. +- **authme.admin.purgebannedplayers** – Administrator command to purge all data associated with banned players. +- **authme.admin.purgelastpos** – Administrator command to purge the last position of a user. +- **authme.admin.register** – Administrator command to register a new user. +- **authme.admin.reload** – Administrator command to reload the plugin configuration. +- **authme.admin.setfirstspawn** – Administrator command to set the first AuthMe spawn. +- **authme.admin.setspawn** – Administrator command to set the AuthMe spawn. +- **authme.admin.spawn** – Administrator command to teleport to the AuthMe spawn. +- **authme.admin.switchantibot** – Administrator command to toggle the AntiBot protection status. +- **authme.admin.unregister** – Administrator command to unregister an existing user. +- **authme.player.*** – Permission to use all player (non-admin) commands. +- **authme.player.allow2accounts** – Permission for users to allow two accounts. - **authme.player.bypassantibot** – Permission node to bypass AntiBot protection. +- **authme.player.bypassforcesurvival** – Permission for users to bypass force-survival mode. - **authme.player.canbeforced** – Permission for users a login can be forced to. +- **authme.player.captcha** – Command permission to use captcha. +- **authme.player.changepassword** – Command permission to change the password. +- **authme.player.email.add** – Command permission to add an email address. +- **authme.player.email.change** – Command permission to change the email address. +- **authme.player.email.recover** – Command permission to recover an account using it's email address. +- **authme.player.login** – Command permission to login. +- **authme.player.logout** – Command permission to logout. +- **authme.player.register** – Command permission to register. +- **authme.player.seeotheraccounts** – Permission for user to see other accounts. +- **authme.player.unregister** – Command permission to unregister. - **authme.player.vip** – Permission node to identify VIP users.