Adjust user UserWorkflowController methods to AWorflowController
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
928cf4bfcc
commit
8a0164b6b9
1 changed files with 4 additions and 4 deletions
|
@ -79,8 +79,8 @@ class UserWorkflowsController extends AWorkflowController {
|
|||
* @throws OCSBadRequestException
|
||||
* @throws OCSForbiddenException
|
||||
*/
|
||||
public function create(string $class, string $name, array $checks, string $operation): DataResponse {
|
||||
return parent::create($class, $name, $checks, $operation);
|
||||
public function create(string $class, string $name, array $checks, string $operation, string $entity, array $events): DataResponse {
|
||||
return parent::create($class, $name, $checks, $operation, $entity, $events);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -88,8 +88,8 @@ class UserWorkflowsController extends AWorkflowController {
|
|||
* @throws OCSBadRequestException
|
||||
* @throws OCSForbiddenException
|
||||
*/
|
||||
public function update(int $id, string $name, array $checks, string $operation): DataResponse {
|
||||
return parent::update($id, $name, $checks, $operation);
|
||||
public function update(int $id, string $name, array $checks, string $operation, string $entity, array $events): DataResponse {
|
||||
return parent::update($id, $name, $checks, $operation, $entity, $events);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue