Skip to content
Snippets Groups Projects
Verified Commit 75f8d678 authored by Damien's avatar Damien
Browse files

FEAT #9838 Action mode

parent a44c78a7
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ class ActionController ...@@ -22,7 +22,7 @@ class ActionController
{ {
public function get(Request $request, Response $response) public function get(Request $request, Response $response)
{ {
$actions = ActionModel::get(['select' => ['id', 'label', 'color', 'logo', 'event'], 'orderBy' => ['id']]); $actions = ActionModel::get(['select' => ['id', 'label', 'color', 'logo', 'event', 'mode'], 'orderBy' => ['id']]);
return $response->withJson(['actions' => $actions]); return $response->withJson(['actions' => $actions]);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment