Browse Source

Changed permissions to improve wording and add file.upload as a default permission

1.0
Gisle Aune 6 years ago
parent
commit
13fc29bd21
  1. 22
      internal/session/defaults.go

22
internal/session/defaults.go

@ -8,6 +8,7 @@ func DefaultPermissions() []string {
"log.reorder", "log.reorder",
"post.edit", "post.edit",
"post.move", "post.move",
"file.upload",
} }
} }
@ -15,19 +16,24 @@ func DefaultPermissions() []string {
func AllPermissions() map[string]string { func AllPermissions() map[string]string {
return map[string]string{ return map[string]string{
"member": "Can add/edit/remove own content", "member": "Can add/edit/remove own content",
"user.edit": "Can edit any users",
"character.add": "Can add any characters",
"character.edit": "Can edit any characters",
"character.remove": "Can remove any characters",
"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",
"log.add": "Can add logs", "log.add": "Can add logs",
"log.edit": "Can edit logs", "log.edit": "Can edit logs",
"log.remove": "Can remove logs", "log.remove": "Can remove logs",
"post.add": "Can add posts", "post.add": "Can add posts",
"post.edit": "Can edit posts", "post.edit": "Can edit posts",
"post.mvoe": "Can mvoe posts",
"post.move": "Can move posts",
"post.remove": "Can remove posts", "post.remove": "Can remove posts",
"story.add": "Can add any stories",
"story.edit": "Can edit any stories",
"story.remove": "Can remove any stories",
"story.edit": "Can edit non-owned stories",
"story.remove": "Can remove non-owned stories",
"file.upload": "Can upload files",
"file.edit": "Can edit non-owned files",
"file.remove": "Can remove non-owned files",
} }
} }
Loading…
Cancel
Save