Skip to content

Instantly share code, notes, and snippets.

@morloderex
Created September 22, 2015 09:13
Show Gist options
  • Save morloderex/1d25b99d3b7019c52333 to your computer and use it in GitHub Desktop.
Save morloderex/1d25b99d3b7019c52333 to your computer and use it in GitHub Desktop.
permissions_thinking
<?php
$permissions = [
'forum' => [
'create' => [
'threads',
'posts',
'categories',
'attachments'
],
'delete' => [
'post',
'categories',
'threads',
'attachments'
],
'update' => [
'post',
'categories',
'threads',
'attachments'
]
],
'profile' => [
'create' => [
'picture'
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment