aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository
Commit message (Collapse)AuthorAgeFilesLines
* Save changesThomas Citharel2017-05-301-0/+26
| | | | | | | | | | | | | | | | | | PHP CS Fixed Events on changes Renamed field First draft for migration (create table Change) Added setter for tag in EntryTaggedEvent Fixed migration for Change table Added API route for entry history Removed deletion history
* Fixed @j0k3r reviewNicolas Lœuillet2017-05-051-3/+1
|
* Added test for deduplicationNicolas Lœuillet2017-05-051-0/+19
|
* Add Clean Duplicates CommandThomas Citharel2017-05-011-0/+13
|
* Renamed methodsNicolas Lœuillet2017-03-311-1/+1
|
* Allow to remove all archived entriesThomas Citharel2017-03-312-0/+28
| | | | | | Since we still support fucking SQLite, we need to retrieve all tags & annotations for archived entries before deleting them. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Rename method from *username to *userThomas Citharel2017-03-301-1/+1
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Search by term: extend to entries urlKevin Decherf2017-02-161-1/+2
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Order tags by slugJan Losinski2017-01-171-0/+1
| | | | | | | | This adds an orderBy clause to findAllTags(). This makes the list of tags more useful, as the tags appear in alphanumerical order instead of somehow random. Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
* Removed outputWalkers for RSS and APINicolas Lœuillet2016-12-151-1/+1
|
* Removed outputWalkers for paginationNicolas Lœuillet2016-12-151-3/+1
| | | | Due to overload, we disabled output walkers (see https://github.com/whiteoctober/Pagerfanta/issues/115
* Removed user join in query builderNicolas Lœuillet2016-12-121-2/+1
|
* Added testsNicolas Lœuillet2016-11-191-2/+1
|
* Added translations and currentRoute parameterNicolas Lœuillet2016-11-191-5/+17
|
* Added a simple search engineNicolas Lœuillet2016-11-191-0/+19
| | | | Fix #18
* Use created_at as default sortJeremy Benoist2016-11-041-1/+1
| | | | With index (following https://github.com/wallabag/wallabag/pull/2534)
* Use statements & update translationJeremy Benoist2016-10-222-22/+14
|
* CSJeremy Benoist2016-10-221-2/+2
|
* Add custom doctrine subscriber for SQLiteJeremy Benoist2016-10-221-0/+13
| | | | | | 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/+17
| | | | | | - annotations - tags - entries
* Optimize the way tag list is renderedJeremy Benoist2016-10-092-3/+27
| | | | | | Instead of retrieve all informations about entries of a tag to just count them, we’ll count them before with a fastest query. Also change the layout of the tag list in material design
* Fix parameters in API _linksJeremy Benoist2016-10-021-1/+1
| | | | We forgot to pass them to the factory
* Avoid duplicate url with accentsJeremy Benoist2016-10-011-1/+1
|
* Fix tag count for PostgreSQLJeremy Benoist2016-09-251-5/+5
|
* Fix tags count in menuJeremy Benoist2016-09-251-3/+31
| | | | Move enable cache for Tag in the Entity because function `find*` should return result and not a Query
* Remove useless variableNicolas Lœuillet2016-09-051-2/+0
|
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-042-24/+1
|
* Merge pull request #2002 from wallabag/feature-display-itemsNumberJeremy Benoist2016-09-031-0/+24
|\ | | | | Feature display items number
| * Store cache lifetime in configNicolas Lœuillet2016-09-031-2/+9
| |
| * Enable cache for queriesNicolas Lœuillet2016-09-011-0/+17
| |
* | Add untagged entriesNicolas Lœuillet2016-08-281-0/+16
| | | | | | | | Fix #1631
* | CSThomas Citharel2016-08-231-4/+4
| |
* | Delete tag or tags by labelThomas Citharel2016-08-231-0/+13
|/ | | | Tests not included
* add some missing phpdoc parametersThomas Citharel2016-07-241-0/+2
|
* fix merge issueThomas Citharel2016-06-291-1/+2
|
* Add filter for tags on APIThomas Citharel2016-06-291-1/+7
|
* Add since parameterThomas Citharel2016-06-251-1/+5
|
* Remove useless methodNicolas Lœuillet2016-05-031-15/+3
|
* Fix tags listingNicolas Lœuillet2016-05-021-18/+0
| | | | | Fix #1994 * Remove unused method in tag repository
* Convert array + phpDocJeremy Benoist2016-04-121-2/+2
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* improve test and change method name. Also, display number of entries for ↵Thomas Citharel2016-02-101-1/+1
| | | | each tag
* remove tag from entry #1377Thomas Citharel2016-02-101-0/+16
|
* Use translator interface instead of final classJeremy Benoist2016-01-171-1/+1
| | | | | | | | | Symfony use a different class when in dev mode and prod mode. Prod loads `Symfony\Bundle\FrameworkBundle\Translation\Translator`. Dev loads `Symfony\Component\Translation\DataCollectorTranslator` to gather information for the debug bar. Fix #1585
* Fix `findOneByUrl` side effect in testsJeremy Benoist2016-01-151-2/+1
| | | | Fix #1566
* Quickstart for beginnersNicolas Lœuillet2016-01-151-0/+19
|
* Fix the way to check for an existing entryJeremy Benoist2016-01-021-2/+2
| | | | Instead of requiring more than 1 entry (> 1) we have to check for at least one entry (> 0)
* Change the way to check for an existing entryJeremy Benoist2016-01-021-3/+11
| | | | The repository method return the entry found or false if nothing exists.
* - remove importers configurationNicolas Lœuillet2016-01-021-0/+17
| | | | - add check on userId for findOneByURL for entries
* Removed commentJeremy Benoist2015-12-291-9/+3
| | | | And move the SQL query inside the php doc
* Fix the way to remove a tag from all user entriesJeremy Benoist2015-12-291-8/+39
|