Skip to content

Commit 6cfbed6

Browse files
authored
Merge pull request #39 from tipoff/huntermontell/feature/add-executive-role-permissions
Executive role permissions
2 parents 191a3e5 + c672085 commit 6cfbed6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

database/migrations/2021_02_13_100000_add_contact_permissions.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ class AddContactPermissions extends BasePermissionsMigration
99
public function up()
1010
{
1111
$permissions = [
12-
'view contacts' => ['Owner', 'Staff'],
13-
'create contacts' => ['Owner', 'Staff'],
14-
'update contacts' => ['Owner', 'Staff'],
15-
'delete contacts' => ['Owner', 'Staff'],
12+
'view contacts' => ['Owner', 'Executive', 'Staff'],
13+
'create contacts' => ['Owner', 'Executive', 'Staff'],
14+
'update contacts' => ['Owner', 'Executive', 'Staff'],
15+
'delete contacts' => ['Owner', 'Executive', 'Staff'],
1616
];
1717

1818
$this->createPermissions($permissions);

0 commit comments

Comments
 (0)