aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
Commit message (Collapse)AuthorAgeFilesLines
* Add an exists endpoint in APIJeremy Benoist2016-10-011-0/+32
| | | | It should allow third party to check if an url was already saved by a user
* Fix tags count in menuJeremy Benoist2016-09-251-3/+1
| | | | Move enable cache for Tag in the Entity because function `find*` should return result and not a Query
* Re-user JsonResponseJeremy Benoist2016-09-081-40/+27
| | | | Since Symfony 3.1 we can define the json of a JsonResonse using `->setJson()`
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-041-1/+3
|
* Add some testsJeremy Benoist2016-08-231-23/+35
| | | | | | | | | | | Also, retrieve tag from the request instead of the query (which will be the same but it's more easy to test). Moved down `deleteTagAction` because it conflicted with the new action: api_delete_tag => /api/tags/{tag}.{_format} api_delete_tags_label => /api/tags/label.{_format} And finally, throw exception when a tag is not found before removing it.
* CSThomas Citharel2016-08-231-2/+1
|
* Delete tag or tags by labelThomas Citharel2016-08-231-0/+61
| | | | Tests not included
* Add filter for tags on APIThomas Citharel2016-06-291-1/+2
|
* CSThomas Citharel2016-06-251-1/+1
|
* Add since parameterThomas Citharel2016-06-251-1/+3
|
* PATCH also clears starred and archived signsYuriy Evdokimov2016-05-181-2/+2
|
* Starred and Archived clears if article is already existsYuriy Evdokimov2016-05-181-2/+2
|
* Set the title via POST /api/entriesNicolas Lœuillet2016-05-021-0/+5
| | | | Fix #2009
* Convert array + phpDocJeremy Benoist2016-04-121-1/+1
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Remove int castNicolas Lœuillet2016-04-101-2/+2
|
* All the entries are fetched via GET /api/entriesNicolas Lœuillet2016-04-091-3/+3
| | | | Fix #1863: only the unread entries were fetched with GET /api/entries entrypoint. Now, all the entries are fetched
* add checkThomas Citharel2016-03-161-2/+6
|
* fix updating entry status through APIThomas Citharel2016-03-161-6/+2
|
* use integers for archived/starred statusThomas Citharel2016-03-161-18/+18
|
* fix api properties and typoThomas Citharel2016-03-161-2/+2
|
* Don't add entry through API if it already existsThomas Citharel2016-03-161-4/+8
|
* typos & csThomas Citharel2016-03-081-1/+3
|
* Add version in APIVincent2016-03-071-0/+13
|
* Remove 'content' from APIJeremy Benoist2016-03-041-6/+0
| | | | Waiting to find a good solution to avoid side problem since user can no define the content
* use booleans instead of emptyThomas Citharel2016-03-041-4/+4
|
* add more properties for entries #1634Thomas Citharel2016-03-041-0/+19
|
* Move assignTagsToEntry in ContentProxy helperJeremy Benoist2016-02-191-28/+3
|
* [#1604] First draft to fix SensioLabsInsight reportNicolas Lœuillet2016-01-221-1/+1
|
* Fix recent updateJeremy Benoist2016-01-151-1/+2
| | | | | | - some missing url parameters from WallabagRestController & EntryController - use a service for `EntryFilterType` to use fully qualified name instead (so changing class signature) - update ImportBundle (url & form)
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-2/+2
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Few phpDoc fixJeremy Benoist2016-01-031-5/+15
| | | | And some little mistakes
* Cleanup testsJeremy Benoist2015-12-291-4/+0
| | | | | - WallabagRestController: remove the tag deletion from the API since we can't remove a tag now, we only remove reference to entries - RuleBasedTaggerTest: remove workaround for asserting tag are equal since problem was related to mock expects (_call instead of findOneByLabel which was removed from the tag repository)
* Fix parameters regarding documentationJeremy Benoist2015-12-291-2/+2
| | | | Parameters are `star` & `archived`, not `is_starred` & `is_archived`
* Remove user reference in tagJeremy Benoist2015-12-291-5/+12
| | | | Fix #1543
* Fix security.context deprecationJeremy Benoist2015-11-071-2/+2
|
* check authentication on each API routeNicolas Lœuillet2015-10-031-0/+19
|
* * public registrationNicolas Lœuillet2015-10-031-38/+13
| | | | | * remove WSSE implementation * add oAuth2 implementation
* Move fetching content in a separate classJeremy Benoist2015-09-101-10/+4
|
* Update url from grabyJeremy Benoist2015-08-241-1/+1
|
* CSJeremy Benoist2015-08-241-1/+0
|
* Integrate grabyJeremy Benoist2015-08-241-3/+8
|
* CSJeremy Benoist2015-08-201-9/+9
| | | | We shouldn't forget to run `php-cs-fixer` time to time
* Adds pagerfanta paginator everywhere, modifies article routing. Change API ↵Francois Gravelaine2015-07-281-2/+2
| | | | for is_starred and is_archived
* CSJeremy Benoist2015-05-301-16/+22
|
* Move API stuff in ApiBundleJeremy2015-04-011-0/+370