mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
c0adf5894f
closes #3909 - Remove permissions from configuration API - Remove permission setup from integration test - Remove permissions from permissions.json
176 lines
4.4 KiB
JSON
176 lines
4.4 KiB
JSON
{
|
|
"permissions": {
|
|
"db": [
|
|
{
|
|
"name": "Export database",
|
|
"action_type": "exportContent"
|
|
},
|
|
{
|
|
"name": "Import database",
|
|
"action_type": "importContent"
|
|
},
|
|
{
|
|
"name": "Delete all content",
|
|
"action_type": "deleteAllContent"
|
|
}
|
|
],
|
|
"mail": [
|
|
{
|
|
"name": "Send mail",
|
|
"action_type": "send"
|
|
}
|
|
],
|
|
"notification": [
|
|
{
|
|
"name": "Browse notifications",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Add notifications",
|
|
"action_type": "add"
|
|
},
|
|
{
|
|
"name": "Delete notifications",
|
|
"action_type": "destroy"
|
|
}
|
|
],
|
|
"post": [
|
|
{
|
|
"name": "Browse posts",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Read posts",
|
|
"action_type": "read"
|
|
},
|
|
{
|
|
"name": "Edit posts",
|
|
"action_type": "edit"
|
|
},
|
|
{
|
|
"name": "Add posts",
|
|
"action_type": "add"
|
|
},
|
|
{
|
|
"name": "Delete posts",
|
|
"action_type": "destroy"
|
|
}
|
|
],
|
|
"setting": [
|
|
{
|
|
"name": "Browse settings",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Read settings",
|
|
"action_type": "read"
|
|
},
|
|
{
|
|
"name": "Edit settings",
|
|
"action_type": "edit"
|
|
}
|
|
],
|
|
"slug": [
|
|
{
|
|
"name": "Generate slugs",
|
|
"action_type": "generate"
|
|
}
|
|
],
|
|
"tag": [
|
|
{
|
|
"name": "Browse tags",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Read tags",
|
|
"action_type": "read"
|
|
},
|
|
{
|
|
"name": "Edit tags",
|
|
"action_type": "edit"
|
|
},
|
|
{
|
|
"name": "Add tags",
|
|
"action_type": "add"
|
|
},
|
|
{
|
|
"name": "Delete tags",
|
|
"action_type": "destroy"
|
|
}
|
|
],
|
|
"theme": [
|
|
{
|
|
"name": "Browse themes",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Edit themes",
|
|
"action_type": "edit"
|
|
}
|
|
],
|
|
"user": [
|
|
{
|
|
"name": "Browse users",
|
|
"action_type": "browse"
|
|
},
|
|
{
|
|
"name": "Read users",
|
|
"action_type": "read"
|
|
},
|
|
{
|
|
"name": "Edit users",
|
|
"action_type": "edit"
|
|
},
|
|
{
|
|
"name": "Add users",
|
|
"action_type": "add"
|
|
},
|
|
{
|
|
"name": "Delete users",
|
|
"action_type": "destroy"
|
|
}
|
|
],
|
|
"role": [
|
|
{
|
|
"name": "Assign a role",
|
|
"action_type": "assign"
|
|
},
|
|
{
|
|
"name": "Browse roles",
|
|
"action_type": "browse"
|
|
}
|
|
]
|
|
},
|
|
"permissions_roles": {
|
|
"Administrator": {
|
|
"db": "all",
|
|
"mail": "all",
|
|
"notification": "all",
|
|
"post": "all",
|
|
"setting": "all",
|
|
"slug": "all",
|
|
"tag": "all",
|
|
"theme": "all",
|
|
"user": "all",
|
|
"role": "all"
|
|
},
|
|
"Editor": {
|
|
"post": "all",
|
|
"setting": ["browse", "read"],
|
|
"slug": "all",
|
|
"tag": "all",
|
|
"user": "all",
|
|
"setting": ["browse", "read"],
|
|
"role": "all"
|
|
},
|
|
"Author": {
|
|
"post": ["browse", "read", "add"],
|
|
"setting": ["browse", "read"],
|
|
"slug": "all",
|
|
"tag": ["browse", "read", "add"],
|
|
"user": ["browse", "read"],
|
|
"setting": ["browse", "read"],
|
|
"role": ["browse"]
|
|
}
|
|
}
|
|
} |