aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
Commit message (Collapse)AuthorAgeFilesLines
...
| * Merge pull request #2351 from wallabag/fix-api-client-deletionNicolas Lœuillet2016-10-081-101/+0
| |\ | | | | | | Changed relation between API client and refresh token
| | * Ensure access_token are removedJeremy Benoist2016-10-081-101/+0
| | | | | | | | | | | | | | | | | | | | | | | | When we remove the client, we should ensure that access_token are also removed. To ensure that, I created a test that generated an access_token. So when we remove the client, this association should be cascaded and shouldn’t generate an error. Also I moved some Api related stuff to the ApiBundle (like the developer controler and ClientType form)
| * | Ensure orphan tag are remove in APIJeremy Benoist2016-10-071-2/+4
| |/ | | | | | | | | | | When the association between a tag and an entry is removed, if the tag doesn’t have other entries, we can remove it. Also add more tests for that part and ensure TagControllerTest is isolated from the rest of the test suite (finally!)
* | 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
|
* Merge pull request #2322 from wallabag/v2-404Nicolas Lœuillet2016-10-011-0/+40
|\ | | | | Customize errors templates
| * Customize errors templatesJeremy Benoist2016-10-011-0/+40
| | | | | | | | All error goes to the same template which only display the error message and the status code.
* | 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
* Removed duplicated templates filesNicolas Lœuillet2016-09-304-9/+9
|
* CSJeremy Benoist2016-09-251-1/+1
|
* Fix tags count in menuJeremy Benoist2016-09-251-18/+10
| | | | Move enable cache for Tag in the Entity because function `find*` should return result and not a Query
* Merge pull request #1941 from wallabag/v2-asynchronous-jobsJeremy Benoist2016-09-191-21/+29
|\ | | | | Use asynchronous jobs for imports
| * Avoid losing entry when fetching failJeremy Benoist2016-09-171-21/+29
| | | | | | | | Instead of just say “Failed to save entry” we’ll save the entry at all cost and try to fetch content. If fetching content failed, the entry will still be saved at least, but without content.
* | Remove FooterControllerNicolas Lœuillet2016-09-151-27/+0
|/
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-041-1/+3
|
* Instead of selecting the whole data, just count itJeremy Benoist2016-09-031-2/+2
| | | | | | Instead of performing a complex select (to retrieve all data for entry, etc...) just select the counter and retrieve it. Down from ~50ms to ~30ms on the unread page (with 500 items)
* Add untagged entriesNicolas Lœuillet2016-08-282-1/+20
| | | | Fix #1631
* Update testJeremy Benoist2016-08-241-16/+14
| | | | and some cleanup
* Change share entry behaviorNicolas Lœuillet2016-08-231-4/+47
|
* Add Cache on Share ActionNicolas Lœuillet2016-08-231-0/+2
|
* Add migrationNicolas Lœuillet2016-08-231-3/+2
|
* Share entry with a public URLNicolas Lœuillet2016-08-231-0/+31
|
* Add tests for tag list routesNicolas Lœuillet2016-08-231-1/+5
|
* Links on each tag in Tags viewNicolas Lœuillet2016-08-233-4/+44
|
* Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-08-223-2/+31
|\
| * Fixed some translationsNicolas Lœuillet2016-08-181-1/+1
| |
| * Replaced favorite word/icon with star oneNicolas Lœuillet2016-08-181-1/+1
| | | | | | | | Fix #2041
| * php-cs-fixer passSimounet2016-07-202-2/+4
| |
| * Handling socials links into a config fileSimounet2016-07-202-1/+28
| |
| * Try to find bad redirection after deleteJeremy Benoist2016-06-171-3/+4
| | | | | | | | | | Instead of checking for the whole absolute url, we just check with the relative url. If the referer ends with the relative url of the deleted entry, don't redirect to the referer.
| * Display a message when saving an entry failedJeremy Benoist2016-05-301-5/+12
| | | | | | | | | | When saving an entry fail because of database error we previously just returned `false`. Now we got an error in the log and the displayed notice to the user is updated too.
* | Added name on clientThomas Citharel2016-08-221-2/+3
| | | | | | | | | | | | | | | | - Fix typos in field name - Added migration for name field in API client table Manually cherry-picked from PR https://github.com/wallabag/wallabag/pull/2171
* | Try to find bad redirection after deleteJeremy Benoist2016-06-231-3/+4
| | | | | | | | | | Instead of checking for the whole absolute url, we just check with the relative url. If the referer ends with the relative url of the deleted entry, don't redirect to the referer.
* | Display a message when saving an entry failedJeremy Benoist2016-06-231-5/+12
|/ | | | | When saving an entry fail because of database error we previously just returned `false`. Now we got an error in the log and the displayed notice to the user is updated too.
* Merge pull request #2013 from wallabag/fix-display-all-tagsJeremy Benoist2016-05-031-1/+1
|\ | | | | Fix tags listing
| * Fix tags listingNicolas Lœuillet2016-05-021-1/+1
| | | | | | | | | | Fix #1994 * Remove unused method in tag repository
* | Fix reading speed not defined when user was created via config pageNicolas Lœuillet2016-04-301-0/+1
|/ | | | Fix #2004
* Fix redirect when delete entryNicolas Lœuillet2016-04-151-1/+1
|
* Redirect to homepage if referer is nullNicolas Lœuillet2016-04-152-4/+14
| | | | Fix #1924
* Convert array + phpDocJeremy Benoist2016-04-127-54/+63
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Change visibility of checkIfEntryAlreadyExists method to privateNicolas Lœuillet2016-04-101-1/+1
|
* Refactor EntryControllerNicolas Lœuillet2016-04-091-6/+14
|