2015-10-23 14:45:50 +02:00
|
|
|
<?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")
|
|
|
|
|
*/
|
2015-12-30 12:23:51 +01:00
|
|
|
public function importAction()
|
2015-10-23 14:45:50 +02:00
|
|
|
{
|
2015-12-30 12:23:51 +01:00
|
|
|
return $this->render('WallabagImportBundle:Import:index.html.twig', []);
|
2015-10-23 14:45:50 +02:00
|
|
|
}
|
|
|
|
|
}
|