diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/.htaccess | 7 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/ApiController.php | 21 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/StaticController.php | 8 |
3 files changed, 36 insertions, 0 deletions
diff --git a/src/.htaccess b/src/.htaccess new file mode 100644 index 00000000..fb1de45b --- /dev/null +++ b/src/.htaccess | |||
@@ -0,0 +1,7 @@ | |||
1 | <IfModule mod_authz_core.c> | ||
2 | Require all denied | ||
3 | </IfModule> | ||
4 | <IfModule !mod_authz_core.c> | ||
5 | Order deny,allow | ||
6 | Deny from all | ||
7 | </IfModule> | ||
diff --git a/src/Wallabag/CoreBundle/Controller/ApiController.php b/src/Wallabag/CoreBundle/Controller/ApiController.php new file mode 100644 index 00000000..ac06701c --- /dev/null +++ b/src/Wallabag/CoreBundle/Controller/ApiController.php | |||
@@ -0,0 +1,21 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Controller; | ||
4 | |||
5 | use Nelmio\ApiDocBundle\Annotation\ApiDoc; | ||
6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | ||
7 | use Wallabag\CoreBundle\Entity\Entries; | ||
8 | |||
9 | class ApiController extends Controller | ||
10 | { | ||
11 | /** | ||
12 | * @ApiDoc( | ||
13 | * resource=true, | ||
14 | * description="This is a demo method. Just remove it", | ||
15 | * ) | ||
16 | */ | ||
17 | public function getEntryAction() | ||
18 | { | ||
19 | return new Entries('Blobby'); | ||
20 | } | ||
21 | } | ||
diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php index 0fd19d65..07931f58 100644 --- a/src/Wallabag/CoreBundle/Controller/StaticController.php +++ b/src/Wallabag/CoreBundle/Controller/StaticController.php | |||
@@ -17,4 +17,12 @@ class StaticController extends Controller | |||
17 | array() | 17 | array() |
18 | ); | 18 | ); |
19 | } | 19 | } |
20 | |||
21 | /** | ||
22 | * @Route("/", name="homepage") | ||
23 | */ | ||
24 | public function apiAction() | ||
25 | { | ||
26 | return $this->redirect($this->generateUrl('nelmio_api_doc_index')); | ||
27 | } | ||
20 | } | 28 | } |