aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures
Commit message (Collapse)AuthorAgeFilesLines
* Add some tests for OriginUrl in EntryRestControllerKevin Decherf2017-11-191-0/+1
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Multiple tag search was broken from APIJeremy Benoist2017-09-061-1/+8
| | | | | | | | | | First, the setParameter() were done on the same parameter which in fact just duplicated the condition in the SQL query (like `where t.label = 'test' and t.label = 'test'`. Changed the parameter doesn't help because the query was then wrong. Changing the way to match associated tags for an entry and it worked.
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-1/+1
|
* Add menu access to site credentials CRUDJeremy Benoist2017-06-201-0/+34
|
* API user creation behing a toggleJeremy Benoist2017-06-021-160/+14
| | | | | | | | I've added a toggle feature (in internal settings) so that user api creation can be disabled while form registration still can be enabled. Also, the /api/user endpoint shouldn't require authentication. Even if we check the authentication when sending a GET request, to retrieve current user information. I've moved all the internal settings definition to config to avoid duplicated place to define them. I don't know why we didn't did that earlier.
* Added notmatches operator for tagging ruleNicolas Lœuillet2017-04-201-0/+7
|
* Added migration for Scuttle sharingNicolas Lœuillet2017-03-281-2/+2
|
* Scuttle sharingFrenchHope2017-03-281-0/+10
|
* Fixed export by tags with a tag which contains spaceNicolas Lœuillet2016-12-271-1/+1
|
* Add default value for list_modeJeremy Benoist2016-12-121-0/+3
|
* Added internal setting to enable/disable articles with paywallNicolas Lœuillet2016-11-221-0/+5
|
* Added a configuration to define the redirection after archiving an entryNicolas Lœuillet2016-11-161-0/+3
| | | | Fix #496
* Added unmark.it sharingNicolas Lœuillet2016-11-091-0/+10
| | | | Fix #668
* Add translations & migrationJeremy Benoist2016-10-311-11/+1
|
* Ability to enable/disable downloading imagesJeremy Benoist2016-10-301-0/+15
| | | | | This will speed up the test suite because it won’t download everything when we add new entry… Add a custom test with downloading image enabled
* Move settings before EntryJeremy Benoist2016-10-301-1/+1
| | | | Because we need wallabag_url to be defined when we’ll insert entries
* Update translation for piwik_hostJeremy Benoist2016-10-211-1/+1
|
* Fix relations export for EntryJeremy Benoist2016-10-071-0/+4
| | | | | Tags & Annotations weren’t really well exported. This is now fixed (+ tests)
* Moved Pocket token to user configJeremy Benoist2016-09-162-5/+3
|
* Enable Redis async importJeremy Benoist2016-09-111-1/+6
| | | | | | | | - using javibravo/simpleue - internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear - if both option are enable rabbit will be choosen - services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml` -
* Replace RabbitMQ injection with CraueConfigurationNicolas Lœuillet2016-09-111-0/+5
|
* Add migrationNicolas Lœuillet2016-08-231-0/+5
|
* Add tests for tag list routesNicolas Lœuillet2016-08-231-0/+7
|
* Change ManyToMany between entry & tagJeremy Benoist2016-06-231-1/+0
| | | | | | | | | | | | 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
* Move fixtures to the right placeJeremy Benoist2016-06-232-6/+8
|
* Convert array + phpDocJeremy Benoist2016-04-121-2/+2
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Fix internal settingsNicolas Lœuillet2016-04-091-5/+0
| | | | Fix #1867: remove download_picture setting and manage show_printlink in material theme
* Fixed fixtures for configNicolas Lœuillet2016-03-141-0/+3
|
* Use internal config instead for demoJeremy Benoist2016-02-221-0/+10
|
* Fix #1137: implemented PiwikNicolas Lœuillet2016-02-191-0/+15
|
* Add new export configJeremy Benoist2016-01-311-0/+20
|
* CSJeremy Benoist2016-01-311-1/+1
|
* Create internal setting on install & fixturesJeremy Benoist2016-01-311-0/+113
|
* Quickstart for beginnersNicolas Lœuillet2016-01-151-0/+9
|
* Merge pull request #1545 from wallabag/v2-user-tagNicolas Lœuillet2016-01-022-15/+45
|\ | | | | v2 – Remove user reference in tag
| * Remove user reference in tagJeremy Benoist2015-12-292-15/+45
| | | | | | | | Fix #1543
* | Add custom email for 2FAJeremy Benoist2015-12-291-2/+2
|/ | | | Related #1490
* Entry data should have unique urlJeremy Benoist2015-12-281-6/+6
|
* Avoid multiple tag creationJeremy Benoist2015-12-281-0/+41
| | | | | | | 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 quick testKévin Gomez2015-11-131-0/+8
|
* Fix testsJeremy Benoist2015-11-091-0/+6
|
* move some files to UserBundleNicolas Lœuillet2015-10-031-50/+0
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-2/+2
|
* * public registrationNicolas Lœuillet2015-10-031-2/+3
| | | | | * remove WSSE implementation * add oAuth2 implementation
* Fix tests for allJeremy Benoist2015-09-281-0/+1
|
* Move readingTime & domainName in ContentProxyJeremy Benoist2015-09-281-0/+12
| | | | So, everything is centralized in one place when we save a new entry.
* Entries filter on languageJeremy Benoist2015-09-231-0/+6
| | | | + updated deps
* implement FosUserNicolas Lœuillet2015-09-111-0/+2
|
* CSJeremy Benoist2015-08-203-6/+6
| | | | We shouldn't forget to run `php-cs-fixer` time to time
* set material to default theme \o/Nicolas Lœuillet2015-08-041-1/+1
|