]> git.immae.eu Git - github/wallabag/wallabag.git/commit
* public registration
authorNicolas LÅ“uillet <nicolas@loeuillet.org>
Tue, 29 Sep 2015 12:31:52 +0000 (14:31 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 3 Oct 2015 11:30:43 +0000 (13:30 +0200)
commitfcb1fba5c2fdb12c9f4041bd334aaced6f302d91
tree0f388190a3648127c06dd3b4b9b198d2505bb7a8
parent8a60bc4cc2b6b1cfb5d8beb7ddcafc51d89a64c9
* public registration
* remove WSSE implementation
* add oAuth2 implementation
33 files changed:
app/AppKernel.php
app/config/config.yml
app/config/config_prod.yml
app/config/routing.yml
app/config/security.yml
app/config/services.yml
composer.json
composer.lock
src/Wallabag/ApiBundle/Controller/WallabagRestController.php
src/Wallabag/ApiBundle/DependencyInjection/Security/Factory/WsseFactory.php [deleted file]
src/Wallabag/ApiBundle/DependencyInjection/WallabagApiExtension.php
src/Wallabag/ApiBundle/Entity/AccessToken.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Entity/AuthCode.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Entity/Client.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Entity/RefreshToken.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Resources/config/services.yml [deleted file]
src/Wallabag/ApiBundle/Security/Authentication/Provider/WsseProvider.php [deleted file]
src/Wallabag/ApiBundle/Security/Authentication/Token/WsseUserToken.php [deleted file]
src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php [deleted file]
src/Wallabag/ApiBundle/Tests/AbstractControllerTest.php [new file with mode: 0644]
src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
src/Wallabag/ApiBundle/WallabagApiBundle.php
src/Wallabag/CoreBundle/Controller/ConfigController.php
src/Wallabag/CoreBundle/DataFixtures/ORM/LoadUserData.php
src/Wallabag/CoreBundle/Entity/User.php
src/Wallabag/CoreBundle/EventListener/AuthenticationListener.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Form/Type/NewUserType.php
src/Wallabag/CoreBundle/Form/Type/RegistrationType.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Resources/config/services.yml
src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig
src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
src/Wallabag/CoreBundle/Resources/views/themes/material/Security/login.html.twig
src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php