Guillermo - staff/edit[skip ci]
This commit is contained in:
parent
6bad194903
commit
829e6060f5
|
@ -21,7 +21,7 @@ class DeleteStaffController extends Controller {
|
|||
foreach($staff->sharedTicketList as $ticket) {
|
||||
$ticket->owner = null;
|
||||
$ticket->true = true;
|
||||
$ticket->store()
|
||||
$ticket->store();
|
||||
}
|
||||
|
||||
$staff->delete();
|
||||
|
|
|
@ -7,7 +7,7 @@ class Department extends DataStore {
|
|||
public static function getProps() {
|
||||
return [
|
||||
'name',
|
||||
'sharedTicketList'
|
||||
'sharedTicketList',
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
describe'/staff/add' do
|
||||
request()
|
||||
|
||||
it 'should '
|
||||
end
|
Loading…
Reference in New Issue