package auth // AllPermissions gets all permissions and their purpose func AllPermissions() map[string]string { return map[string]string{ "member": "Can add/edit/remove own content", "user.edit": "Can edit non-owned users", "character.add": "Can add non-owned characters", "character.edit": "Can edit non-owned characters", "character.remove": "Can remove non-owned characters", "channel.add": "Can add channels", "channel.edit": "Can edit channels", "channel.remove": "Can remove channels", "comment.edit": "Can edit non-owned comments", "comment.remove": "Can remove non-owned comments", "log.add": "Can add logs", "log.edit": "Can edit logs", "log.remove": "Can remove logs", "post.add": "Can add posts", "post.edit": "Can edit posts", "post.move": "Can move posts", "post.remove": "Can remove posts", "story.add": "Can add non-owned stories", "story.edit": "Can edit non-owned stories", "story.remove": "Can remove non-owned stories", "story.unlisted": "Can view non-owned unlisted stories", "file.upload": "Can upload files", "file.list": "Can list non-owned files", "file.view": "Can view non-owned files", "file.edit": "Can edit non-owned files", "file.remove": "Can remove non-owned files", } }