aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
Commit message (Collapse)AuthorAgeFilesLines
* Fix phpcsKevin Decherf2017-11-191-2/+2
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Add originUrl property to Entry, handle that in EntryRestController, handle ↵Kevin Decherf2017-11-191-0/+33
| | | | | | migration Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Changed reading_time field to prevent null valuesNicolas Lœuillet2017-10-131-2/+2
|
* Merge pull request #3139 from Kdecherf/2502-tag-caseJérémy Benoist2017-09-031-1/+1
|\ | | | | Ignore tag's case
| * Tag: render tags case-insensitive by storing them in lowercaseKevin Decherf2017-08-271-1/+1
| | | | | | | | | | | | Fixes #2502 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Set a starred_at field when an entry is starred.François D2017-08-251-0/+47
|/ | | | | | | | This date is used to sort starred entries. Can not use Entry::timestamps method otherwise starred_at will be updated each time entry is updated. Add an updateStar method into Entry class A migration script has been added in order to set starred_at field.
* Add EntityTimestampsTrait to handle datesJeremy Benoist2017-07-062-23/+6
| | | | Refactorize timestamps() method to avoid re-writing it on each entity
* Merge pull request #3256 from wallabag/fix-patchJérémy Benoist2017-07-051-0/+16
|\ | | | | Fix PATCH method
| * Fix PATCH methodJeremy Benoist2017-07-031-0/+16
| | | | | | | | | | The PATCH method for the entry should only update what user sent to us and not the whole entry as it was before. Also, sending tags when patching an entry will now remove all current tags & assocatied new ones.
* | CSJeremy Benoist2017-07-031-1/+1
|/
* Add a real configuration for CS-FixerJeremy Benoist2017-07-013-7/+7
|
* Merge pull request #2683 from wallabag/credentials-in-dbJérémy Benoist2017-06-201-0/+195
|\ | | | | Store credentials in DB
| * Fix reviewsThomas Citharel2017-06-201-2/+1
| | | | | | | | | | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * Crypt site credential passwordJeremy Benoist2017-06-201-2/+1
| |
| * Add CRUD for site credentialsJeremy Benoist2017-06-201-0/+197
| |
* | 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
|
* Added notmatches operator for tagging ruleNicolas Lœuillet2017-04-201-2/+2
|
* 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-192-2/+2
|
* Limit rule to 255Jeremy Benoist2016-12-031-0/+1
| | | | To avoid database error
* Renamed view_mode by list_mode and hide excerptNicolas Lœuillet2016-11-281-7/+7
|
* Added list viewNicolas Lœuillet2016-11-281-0/+27
|
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-191-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # .editorconfig # docs/de/index.rst # docs/de/user/import.rst # docs/en/index.rst # docs/en/user/configuration.rst # docs/en/user/import.rst # docs/fr/index.rst # docs/fr/user/import.rst # src/Wallabag/CoreBundle/Command/InstallCommand.php # src/Wallabag/CoreBundle/Resources/translations/messages.da.yml # src/Wallabag/CoreBundle/Resources/translations/messages.de.yml # src/Wallabag/CoreBundle/Resources/translations/messages.en.yml # src/Wallabag/CoreBundle/Resources/translations/messages.es.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml # src/Wallabag/CoreBundle/Resources/translations/messages.it.yml # src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml # src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml # src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml # src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig # web/bundles/wallabagcore/themes/baggy/css/style.min.css # web/bundles/wallabagcore/themes/baggy/js/baggy.min.js # web/bundles/wallabagcore/themes/material/css/style.min.css # web/bundles/wallabagcore/themes/material/js/material.min.js
| * Added help on config screenNicolas Lœuillet2016-11-171-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
| |
* | Added constants for redirection valuesNicolas Lœuillet2016-11-161-0/+3
| |
* | Added a configuration to define the redirection after archiving an entryNicolas Lœuillet2016-11-161-0/+27
| | | | | | | | Fix #496
* | 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)
* Moved Pocket token to user configJeremy Benoist2016-09-161-0/+31
|
* 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