Skip to content

Commit e08af44

Browse files
committed
Merge branch 'dev'
2 parents b78a1dd + 0285d49 commit e08af44

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

app/Http/Livewire/Administration/UsersDialog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class="text-xs text-primary-500 hover:text-primary-600 hover:underline"
124124
*/
125125
public function assignAllRoles(): void
126126
{
127-
$this->roles = Permission::all()->pluck('id')->toArray();
127+
$this->roles = Role::all()->pluck('id')->toArray();
128128
}
129129

130130
/**

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Help Desk is a Laravel based project, that let you manage your support tickets a
44

55
> Help Desk is based on the latest version of Laravel and any other Open Source packages and technologies.
66
7-
- **Current version:** *v1.4.5*
7+
- **Current version:** *v1.4.6*
88
- **Last update:** *30 September, 2022*
99

1010
## Features

docs/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
See what's new added, changed, fixed, improved or updated in the latest versions.
44

5+
- **Version 1.4.6** *(30 September, 2022)*
6+
- Bug-fix: assign all roles
7+
58
- **Version 1.4.5** *(30 September, 2022)*
69
- Using roles instead of permissions
710

0 commit comments

Comments
 (0)