aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/ConfigController.php
Commit message (Collapse)AuthorAgeFilesLines
* Added QRCode and link to configure android applicationNicolas Lœuillet2016-10-311-0/+1
|
* CSJeremy Benoist2016-10-221-3/+4
|
* Avoid orphan tagsJeremy Benoist2016-10-221-2/+14
|
* Add custom doctrine subscriber for SQLiteJeremy Benoist2016-10-221-11/+30
| | | | | | Since SQLite doesn’t handle cascade remove by default, we need to handle it manually. Also some refacto
* Add ability to reset some datasJeremy Benoist2016-10-221-0/+42
| | | | | | - annotations - tags - entries
* CSJeremy Benoist2016-10-081-11/+11
|
* Logout user before deleting itJeremy Benoist2016-10-081-20/+23
| | | | And add a smal description
* Added check if there is only one userNicolas Lœuillet2016-10-081-0/+14
| | | | Added translations and documentation
* CSThomas Citharel2016-10-081-7/+7
|
* workThomas Citharel2016-10-081-0/+20
|
* Cleanup & add link on baggy menuJeremy Benoist2016-10-021-2/+0
|
* Add users management UIJeremy Benoist2016-10-021-27/+0
| | | | | | - remove the “add a user” from the config page - add a CRUD on user - fix some missing translations (+ bad indentation)
* CSJeremy Benoist2016-10-011-2/+2
|
* Introduce validateRuleActionJeremy Benoist2016-10-011-5/+13
|
* Add ability to edit a tagging ruleJeremy Benoist2016-10-011-1/+33
|
* Create user config in one placeJeremy Benoist2016-09-301-11/+7
| | | | | | | | Using a listener, user config is now created when a user: - is created from the command line - register (with or without email confirmation) - is created from the config panel
* Fix reading speed not defined when user was created via config pageNicolas Lœuillet2016-04-301-0/+1
| | | | Fix #2004
* Convert array + phpDocJeremy Benoist2016-04-121-19/+19
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Add flashes messagesJeremy Benoist2016-03-201-9/+9
|
* Improve test failure readabilityJeremy Benoist2016-03-201-1/+1
| | | | | If the response content isn't the one expected, instead of checking into the whole DOM (with node tag, etc ..) we only check the text. So if it fails, phpunit will display only the text, not all node tag. It'll be easier to read.
* Improve testsJeremy Benoist2016-03-111-1/+0
| | | | | | - add more tests for coverage - add a test on annotation deletion - fix post annontation with ranges
* Add testsJeremy Benoist2016-02-221-9/+5
|
* Use internal config instead for demoJeremy Benoist2016-02-221-1/+1
|
* add a username for demonstration modeNicolas Lœuillet2016-02-221-6/+6
|
* typoNicolas Lœuillet2016-02-221-1/+1
|
* Demonstration mode to prevent password changesNicolas Lœuillet2016-02-221-7/+14
|
* CSJeremy Benoist2016-02-121-2/+3
|
* Add missing translationsJeremy Benoist2016-02-121-1/+1
|
* Redirect to the right tab on /configJeremy Benoist2016-02-121-7/+12
|
* Merge pull request #1612 from wallabag/v2-settings-pageNicolas Lœuillet2016-02-041-4/+5
|\ | | | | Settings page
| * Use alias to get container parametersJeremy Benoist2016-01-311-4/+4
| |
| * Add CraueConfig for internal settingsJeremy Benoist2016-01-311-0/+1
| |
| * Move default configuration out of parametersJeremy Benoist2016-01-311-4/+4
| | | | | | | | These default configuration value shouldn't be in parameters.yml.
* | SensioLabsInsight fixesNicolas Lœuillet2016-01-221-1/+1
|/
* Fix bad redirection when adding a new userJeremy Benoist2016-01-211-1/+1
|
* Update bundle & stock fileJeremy Benoist2016-01-151-6/+7
| | | | | | - update stock file (AppKernel, app.php, etc ..) from SymfonyStandard edition) - update bundle to latest release - remove security on profiler
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-4/+4
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Clean the tagging rule creation formKévin Gomez2015-11-161-1/+1
|
* Provide a way to delete tagging rulesKévin Gomez2015-11-111-0/+27
|
* Add a form to create tagging rulesKévin Gomez2015-11-111-0/+21
|
* Fix form_enctype deprecationJeremy Benoist2015-11-071-5/+11
| | | | Use form_start instead
* Language selection on config screenNicolas Lœuillet2015-10-151-1/+1
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-1/+1
|
* * public registrationNicolas Lœuillet2015-10-031-8/+7
| | | | | * remove WSSE implementation * add oAuth2 implementation
* Enabled created user from ConfigJeremy Benoist2015-09-261-0/+2
| | | | | | By default, creating user with FOSUser are disabled by default. Fix #1423
* fix tests for FosUserNicolas Lœuillet2015-09-111-2/+2
|
* Fix testsJeremy2015-04-011-1/+1
|
* Remove ability to change usernameJeremy2015-04-011-2/+2
| | | | | | | | | | Since password are linked to username it was hard to change username while checking that the password is the good one. Instead of doing crazy things to achieve that, I act that user won't be able to update username. Also, username (and email) must be unique, since people logged in using username and can request a new password using email. This should fix #1149
* Add testsJeremy2015-03-311-1/+1
| | | | and fix few mistakes
* Add rss for entriesJeremy2015-03-311-4/+54
| | | | will fix #1000