Guillermo - staff/edit[skip ci]
This commit is contained in:
parent
895fbf011f
commit
980904f86e
|
@ -536,6 +536,7 @@ module.exports = [
|
|||
pages: 4
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,6 +27,7 @@ class GetAllStaffController extends Controller {
|
|||
}
|
||||
|
||||
$staffArray[] = [
|
||||
'id' => $staff->id,
|
||||
'name' => $staff->name,
|
||||
'email' => $staff->email,
|
||||
'profilePic' => $staff->profilePic,
|
||||
|
|
|
@ -7,7 +7,7 @@ class Department extends DataStore {
|
|||
public static function getProps() {
|
||||
return [
|
||||
'name',
|
||||
'sharedTicketList',
|
||||
'sharedTicketList'
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -30,9 +30,11 @@ class Staff extends DataStore {
|
|||
public static function getUser($value, $property = 'id') {
|
||||
return parent::getDataStore($value, $property);
|
||||
}
|
||||
|
||||
public function toArray() {
|
||||
return [
|
||||
'name'=> $this->name,
|
||||
'id' => $this->id,
|
||||
'name' => $this->name,
|
||||
'email' => $this->email,
|
||||
'profilePic' => $this->profilePic,
|
||||
'level' => $this->level,
|
||||
|
|
Loading…
Reference in New Issue