Commit d569704a authored by Nicolas Widart's avatar Nicolas Widart

Modifying delete to destroy permission

parent 6fd63648
......@@ -6,7 +6,7 @@ return [
'store',
'edit',
'update',
'delete'
'destroy'
],
'roles' => [
'index',
......@@ -14,6 +14,6 @@ return [
'store',
'edit',
'update',
'delete'
'destroy'
],
];
\ No newline at end of file
......@@ -38,14 +38,18 @@ class PermissionManagerTest extends \TestCase
'users' => [
'index',
'create',
'store',
'edit',
'delete'
'update',
'destroy'
],
'roles' => [
'index',
'create',
'store',
'edit',
'delete',
'update',
'destroy'
]
],
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment