aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
Commit message (Collapse)AuthorAgeFilesLines
* WIPfederationThomas Citharel2017-06-231-1/+25
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Few fixesJeremy Benoist2017-06-101-0/+1
|
* Add public filter/field in the APIJeremy Benoist2017-06-101-0/+4
| | | | | | 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
* Add isPublic filter on entriesJeremy Benoist2017-06-101-0/+10
|
* CSJeremy Benoist2017-05-301-1/+1
|
* Fix some Scrutinizer issuesJeremy Benoist2017-05-301-3/+3
|
* Replaced json_array with arrayNicolas Lœuillet2017-05-111-4/+4
| | | | And fixed failing test due to @j0k3r :trollface:
* Added headers field in EntryNicolas Lœuillet2017-05-111-1/+30
|
* Merge pull request #3024 from wallabag/store-dateNicolas Lœuillet2017-04-181-0/+58
|\ | | | | Added publication date and author
| * Added author of articleNicolas Lœuillet2017-04-091-0/+29
| |
| * Added publication dateNicolas Lœuillet2017-04-051-0/+29
| |
* | Remove isPublic from Entry entity fix #2598Maxime2017-04-131-25/+0
|/
* Renamed uuid to uidNicolas Lœuillet2016-12-291-13/+13
|
* Changed uuid type in databaseNicolas Lœuillet2016-12-251-1/+1
|
* Fixed index on entry.uuid and changed uuid field typeNicolas Lœuillet2016-12-251-3/+5
|
* Added index on table creationNicolas Lœuillet2016-12-231-1/+2
|
* Be consistent between migration & schema definitionJeremy Benoist2016-12-191-1/+1
|
* Replace http status with a stringNicolas Lœuillet2016-11-181-2/+2
| | | | I don't want to have 0 if we don't fetch status code, I think it's better to have an empty string, mainly for filters
* Added http_status in Entry entityNicolas Lœuillet2016-11-181-0/+29
|
* Add index into Table definitionJeremy Benoist2016-11-041-1/+5
|
* Fix emoji insertion in MySQLJeremy Benoist2016-10-221-1/+1
| | | | | Switch to utf8mb4 instead of utf8 because f*** MySQL See https://github.com/doctrine/dbal/pull/851
* Add ability to reset some datasJeremy Benoist2016-10-221-2/+2
| | | | | | - annotations - tags - entries
* Fix relations export for EntryJeremy Benoist2016-10-071-2/+15
| | | | | Tags & Annotations weren’t really well exported. This is now fixed (+ tests)
* Fix DateTime & clear()Jeremy Benoist2016-09-111-5/+5
|
* Add ability to define created_at for all importJeremy Benoist2016-09-111-2/+17
| | | | | | At the moment only Readability & wallabag v2 import allow created_at import. Pocket removed `time_added` field from their API v2 to v3... And wallabag v1 doesn't export that value.
* Export dates from entriesJeremy Benoist2016-09-081-2/+2
|
* Update testJeremy Benoist2016-08-241-1/+1
| | | | and some cleanup
* Change annotation for uuid fieldNicolas Lœuillet2016-08-241-3/+3
|
* Change share entry behaviorNicolas Lœuillet2016-08-231-2/+5
|
* Add test and fix migrationNicolas Lœuillet2016-08-231-1/+2
|
* Share entry with a public URLNicolas Lœuillet2016-08-231-0/+38
|
* Change ManyToMany between entry & tagJeremy Benoist2016-06-231-2/+15
| | | | | | | | | | | | Following https://gist.github.com/Ocramius/3121916 Be sure to remove the related entity when removing an entity. Let say you have Entry -> EntryTag -> Tag. If you remove the entry: - before that commit, the EntryTag will stay (at least using SQLite). - with that commit, the related entity is removed
* Fix the deletion of Tags/Entries relation when delete an entryNicolas Lœuillet2016-06-231-1/+1
| | | | Fix #2121
* Some cleanupJeremy Benoist2016-03-271-1/+1
| | | | | - travis tabulation - extra namespace definition in entities
* use integers for archived/starred statusThomas Citharel2016-03-161-0/+24
|
* API shows just what needed for userThomas Citharel2016-03-131-0/+32
|
* Rename CommentBundle with AnnotationBundleNicolas Lœuillet2016-02-261-9/+9
|
* Comment work with annotator v2Thomas Citharel2016-02-261-8/+8
| | | | | | - add missing annotator.js file and fix typo - edit & delete routes, started tests - basic tests
* Remove tag relation when removing an entryJeremy Benoist2016-01-201-1/+1
| | | | Fix #1453
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-1/+1
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Few phpDoc fixJeremy Benoist2016-01-031-4/+4
| | | | And some little mistakes
* Remove user reference in tagJeremy Benoist2015-12-291-1/+1
| | | | Fix #1543
* Avoid multiple tag creationJeremy Benoist2015-12-281-0/+8
| | | | | | | When a new tag is created but not yet persisted, it can be duplicated. It could happen when multiple rules match the content and at least 2 of them should attach same new tag. Fix #1528
* Add a command to automatically tag all entries for a userKévin Gomez2015-11-111-0/+4
|
* use JMS SerializerThomas Citharel2015-11-091-1/+1
|
* use the groups annotation instead of setIgnoredAttributesThomas Citharel2015-11-091-0/+35
|
* Quoted entity to avoid reserved keywordJeremy Benoist2015-11-071-1/+1
| | | | Should fix #1498
* move some files to UserBundleNicolas Lœuillet2015-10-031-1/+1
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-2/+3
|
* Move readingTime & domainName in ContentProxyJeremy Benoist2015-09-281-3/+0
| | | | So, everything is centralized in one place when we save a new entry.