]> git.immae.eu Git - github/wallabag/wallabag.git/commit - tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
Move API stuff in ApiBundle
authorJeremy <jeremy.benoist@gmail.com>
Sun, 29 Mar 2015 08:53:10 +0000 (10:53 +0200)
committerJeremy <jeremy.benoist@gmail.com>
Wed, 1 Apr 2015 19:59:12 +0000 (21:59 +0200)
commit769e19dc4ab1a068e8165a7b237f42a78a6d312f
tree8fcb164704dd75a6108db0792c02f4ef6a7e1722
parente3c34bfc06f3ea266a418d6246560f15d3f73e2a
Move API stuff in ApiBundle
25 files changed:
app/AppKernel.php
app/config/routing.yml
app/config/routing_rest.yml
src/Wallabag/ApiBundle/Controller/WallabagRestController.php [moved from src/Wallabag/CoreBundle/Controller/WallabagRestController.php with 79% similarity]
src/Wallabag/ApiBundle/DependencyInjection/Configuration.php [new file with mode: 0644]
src/Wallabag/ApiBundle/DependencyInjection/Security/Factory/WsseFactory.php [moved from src/Wallabag/CoreBundle/DependencyInjection/Security/Factory/WsseFactory.php with 94% similarity]
src/Wallabag/ApiBundle/DependencyInjection/WallabagApiExtension.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Resources/config/routing.yml [new file with mode: 0644]
src/Wallabag/ApiBundle/Resources/config/routing_rest.yml [new file with mode: 0644]
src/Wallabag/ApiBundle/Resources/config/services.yml [new file with mode: 0644]
src/Wallabag/ApiBundle/Security/Authentication/Provider/WsseProvider.php [moved from src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php with 95% similarity]
src/Wallabag/ApiBundle/Security/Authentication/Token/WsseUserToken.php [moved from src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php with 87% similarity]
src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php [moved from src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php with 94% similarity]
src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php [new file with mode: 0644]
src/Wallabag/ApiBundle/WallabagApiBundle.php [new file with mode: 0644]
src/Wallabag/CoreBundle/DependencyInjection/WallabagCoreExtension.php
src/Wallabag/CoreBundle/Resources/config/routing_rest.yml [deleted file]
src/Wallabag/CoreBundle/Resources/config/services.yml
src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php
src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php
src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php [deleted file]
src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php [moved from src/Wallabag/CoreBundle/Tests/WallabagTestCase.php with 91% similarity]
src/Wallabag/CoreBundle/WallabagCoreBundle.php