forked from wallabag/wallabag
18 lines
406 B
PHP
18 lines
406 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Wallabag\ImportBundle\Controller;
|
||
|
|
|
||
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
||
|
|
|
||
|
|
class ImportController extends Controller
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @Route("/import", name="import")
|
||
|
|
*/
|
||
|
|
public function importAction()
|
||
|
|
{
|
||
|
|
return $this->render('WallabagImportBundle:Import:index.html.twig', array());
|
||
|
|
}
|
||
|
|
}
|