aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
Commit message (Collapse)AuthorAgeFilesLines
* WIPfederationThomas Citharel2017-06-231-1/+13
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Add public filter/field in the APIJeremy Benoist2017-06-101-3/+8
| | | | | | Listing entries can now be filtered by “public”. Creating or patching an entry can now set is to public or remove the public. Entry response now include “is_public” boolean field
* 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
|
* Allow to remove all archived entriesThomas Citharel2017-03-311-0/+8
| | | | | | 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>
* 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-221-1/+2
|
* 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
* Optimize the way tag list is renderedJeremy Benoist2016-10-091-0/+20
| | | | | | 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
|
* Remove useless variableNicolas Lœuillet2016-09-051-2/+0
|
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-041-21/+0
|
* 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
|
* Convert array + phpDocJeremy Benoist2016-04-121-2/+2
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* 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
|
* Remove user reference in tagJeremy Benoist2015-12-291-0/+19
| | | | Fix #1543
* french translationNicolas Lœuillet2015-10-011-2/+2
|
* Fix tests for allJeremy Benoist2015-09-281-18/+0
|
* Fix Postgres testsJeremy Benoist2015-09-281-0/+36
|
* Entries filter on languageJeremy Benoist2015-09-231-0/+27
| | | | + updated deps
* filters: adapt queryBuilder for 'all' viewNicolas Lœuillet2015-08-211-0/+14
|
* Refactorize the way to retrieve entriesJeremy Benoist2015-08-201-17/+30
| | | | | One place to retrieve entries in Entry & Rss controller. More simple and easy to maintain.
* store estimated reading time / filters on reading timeNicolas Lœuillet2015-08-121-27/+9
|