diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
commit | ad4d1caa9e744af57ca58a4e57576533eb682d00 (patch) | |
tree | 37d6c284d2afc7fc62cdf80be419b536ab4ea603 /app | |
parent | b84a80559a1167b5500fbc5eb4965d3b08b371ef (diff) | |
download | wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.gz wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.zst wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.zip |
move WallabagBundle into Wallabag:CoreBundle
Diffstat (limited to 'app')
-rw-r--r-- | app/AppKernel.php | 2 | ||||
-rw-r--r-- | app/config/routing.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php index 5d159df8..b0a66dad 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php | |||
@@ -17,7 +17,7 @@ class AppKernel extends Kernel | |||
17 | new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), | 17 | new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), |
18 | new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), | 18 | new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), |
19 | new AppBundle\AppBundle(), | 19 | new AppBundle\AppBundle(), |
20 | new WallabagBundle\WallabagBundle(), | 20 | new Wallabag\CoreBundle\WallabagCoreBundle(), |
21 | ); | 21 | ); |
22 | 22 | ||
23 | if (in_array($this->getEnvironment(), array('dev', 'test'))) { | 23 | if (in_array($this->getEnvironment(), array('dev', 'test'))) { |
diff --git a/app/config/routing.yml b/app/config/routing.yml index d0ece8e3..b3c5291a 100644 --- a/app/config/routing.yml +++ b/app/config/routing.yml | |||
@@ -1,7 +1,7 @@ | |||
1 | app: | 1 | app: |
2 | resource: @WallabagBundle/Controller/ | 2 | resource: @WallabagCoreBundle/Controller/ |
3 | type: annotation | 3 | type: annotation |
4 | 4 | ||
5 | homepage: | 5 | homepage: |
6 | pattern: / | 6 | pattern: / |
7 | defaults: { _controller: WallabagBundle:Entry:showUnread } \ No newline at end of file | 7 | defaults: { _controller: CoreBundle:Entry:showUnread } \ No newline at end of file |