Fix parameter names before being passed to Model\Event::store
- Partial revert of 946db2ab45
This commit is contained in:
parent
616c4695f4
commit
2cbc11403e
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ class Create extends BaseApi
|
|||
$event['summary'] = $request['name'];
|
||||
$event['desc'] = $request['desc'];
|
||||
$event['location'] = $request['place'];
|
||||
$event['start_time'] = $start;
|
||||
$event['end_time'] = $finish;
|
||||
$event['start'] = $start;
|
||||
$event['finish'] = $finish;
|
||||
$event['nofinish'] = $nofinish;
|
||||
|
||||
$event['allow_cid'] = $request['allow_cid'];
|
||||
|
|
Loading…
Reference in a new issue