Skip to content

Commit c6a87f5

Browse files
committed
TASK: Apply migration Neos.Fusion-20161219130100
Migrate name for the TypoScriptView to FusionView
1 parent 066c9b4 commit c6a87f5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Classes/Controller/AjaxSearchController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ class AjaxSearchController extends ActionController
2626
* @var string
2727
* @api
2828
*/
29-
protected $defaultViewObjectName = \Neos\Neos\View\TypoScriptView::class;
29+
protected $defaultViewObjectName = \Neos\Neos\View\FusionView::class;
3030

3131
/**
3232
* @param NodeInterface $node
3333
* @return void
3434
*/
3535
public function searchAction(NodeInterface $node)
3636
{
37-
/* @var $view \Neos\Neos\View\TypoScriptView */
37+
/* @var $view \Neos\Neos\View\FusionView */
3838
$view = $this->view;
39-
$view->setTypoScriptPath('ajaxSearch');
39+
$view->setFusionPath('ajaxSearch');
4040
$view->assign('value', $node);
4141
}
4242
}

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@
7979
"Neos.ContentRepository-20161219093512",
8080
"Neos.Media-20161219094126",
8181
"Neos.Neos-20161219094403",
82-
"Neos.Neos-20161219122512"
82+
"Neos.Neos-20161219122512",
83+
"Neos.Fusion-20161219130100"
8384
]
8485
}
8586
}

0 commit comments

Comments
 (0)