mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
create ImportController to list importers
This commit is contained in:
parent
557e549db7
commit
d51b38ed30
5 changed files with 49 additions and 5 deletions
17
src/Wallabag/ImportBundle/Controller/ImportController.php
Normal file
17
src/Wallabag/ImportBundle/Controller/ImportController.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?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());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue