We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd5a7e commit e85c0e5Copy full SHA for e85c0e5
Classes/Controller/CkeditorConfigurationController.php
@@ -9,6 +9,11 @@
9
*/
10
class CkeditorConfigurationController extends ActionController
11
{
12
+ /**
13
+ * @var string
14
+ */
15
+ protected $defaultViewObjectName = \Neos\Flow\Mvc\View\JsonView::class;
16
+
17
/**
18
* @Flow\InjectConfiguration(path="buttons")
19
* @var array
@@ -17,6 +22,6 @@ class CkeditorConfigurationController extends ActionController
22
23
public function configAction()
24
20
- return \json_encode($this->ckeditorConfig);
25
+ $this->view->assign('value', $this->ckeditorConfig);
21
26
}
27
0 commit comments