aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command
Commit message (Collapse)AuthorAgeFilesLines
* Fixed typo in wallabag nameNicolas Lœuillet2019-07-101-2/+2
|
* Change the way to define algorithm for hashing urlJeremy Benoist2019-05-241-4/+2
|
* Add Wallabag\CoreBundle\Helper\UrlHasherOlivier Mehani2019-05-241-1/+4
| | | | Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Fix tests & cs & migrationJeremy Benoist2019-04-261-1/+1
|
* Some cleanupJeremy Benoist2019-04-011-6/+2
| | | | Also, do not run the hashed_url migration into a Doctrine migration
* Use a better index for hashed_urlJeremy Benoist2019-04-011-1/+1
| | | | | | It'll most often be used in addition to the `user_id`. Also, automatically generate the hash when saving the url. Switch from `md5` to `sha1`.
* Keep url in exists endpointJeremy Benoist2019-04-011-6/+13
| | | | | | - Add migration - Use md5 instead of sha512 (we don't need security here, just a hash) - Update tests
* Hash the urls to check if they existThomas Citharel2019-04-011-0/+95
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Enable OTP 2FAJeremy Benoist2019-01-231-1/+2
| | | | | | | | | - Update SchebTwoFactorBundle to version 3 - Enable Google 2fa on the bundle - Disallow ability to use both email and google as 2fa - Update Ocramius Proxy Manager to handle typed function & attributes (from PHP 7) - use `$this->addFlash` shortcut instead of `$this->get('session')->getFlashBag()->add` - update admin to be able to create/reset the 2fa
* Enable PHPStanJeremy Benoist2019-01-181-1/+2
| | | | | - Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
* php-cs-fixerKevin Decherf2018-09-055-11/+11
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* command: replace note regarding server:run --env=prodKevin Decherf2017-12-161-1/+1
| | | | | server:run --env=prod does not exist anymore Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix installation commandadev2017-11-211-22/+9
|
* Replace kernel.root_dir by kernel.project_dirNicolas Hart2017-10-141-1/+1
| | | | | kernel.root_dir and Kernel::getRootDir() are deprecated since Symfony 3.3. See https://symfony.com/blog/new-in-symfony-3-3-a-simpler-way-to-get-the-project-root-directory and https://github.com/symfony/symfony/blob/3.3/UPGRADE-3.3.md#httpkernel for more information.
* CSJeremy Benoist2017-10-092-2/+2
|
* rename getAllEntriesIdAndUrl into findAllEntriesIdAndUrlByUserIdNicolas Hart2017-08-221-1/+1
|
* rename getAllEntriesId into findAllEntriesIdByUserIdNicolas Hart2017-08-221-1/+1
|
* Add reload entry commandNicolas Hart2017-08-211-0/+90
|
* add search argument and limit option to list users commandNicolas Hart2017-07-311-2/+20
|
* Add list user commandNicolas Hart2017-07-301-0/+43
|
* Better rendering for all core commandsNicolas Hart2017-07-295-71/+70
|
* Merge pull request #3291 from nclsHart/show-user-ioJérémy Benoist2017-07-281-10/+13
|\ | | | | Better rendering for show user command using symfony style
| * Better rendering for show user command using symfony styleNicolas Hart2017-07-271-10/+13
| |
* | Merge pull request #3292 from nclsHart/remove-getdoctrineJérémy Benoist2017-07-283-15/+0
|\ \ | | | | | | Remove unused method getDoctrine in several commands
| * | Remove unused method getDoctrine in several commandsNicolas Hart2017-07-273-15/+0
| |/
* / Remove unused use statement in install commandNicolas Hart2017-07-271-1/+0
|/
* Use the article domain as author for export filesÉtienne Gilli2017-07-081-0/+1
| | | | | | | When exporting an entry, use the domain name as author name for epub, mobi and pdf formats, instead of 'wallabag'. Change the author from array to string, because for now, there is always only one author.
* Add a real configuration for CS-FixerJeremy Benoist2017-07-013-14/+14
|
* Fix getContainer in commandJeremy Benoist2017-06-214-7/+7
|
* User existing service instead of getDoctrineJeremy Benoist2017-06-214-8/+7
|
* Crypt site credential passwordJeremy Benoist2017-06-201-0/+2
|
* Merge pull request #3179 from wallabag/show-user-commandJérémy Benoist2017-06-071-0/+77
|\ | | | | Show user command
| * Fix reviewThomas Citharel2017-06-041-3/+3
| | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * Add show user commandThomas Citharel2017-06-021-0/+77
| | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | API user creation behing a toggleJeremy Benoist2017-06-021-159/+1
|/ | | | | | | | 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.
* Isolated testsadev2017-05-311-9/+7
| | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* Merge pull request #3088 from wallabag/execute-migrations-after-installJérémy Benoist2017-05-051-7/+16
|\ | | | | Added migrations execution after fresh install
| * Added migrations execution after fresh installNicolas Lœuillet2017-05-051-7/+16
| |
* | Add Clean Duplicates CommandThomas Citharel2017-05-011-0/+119
|/
* Added migration for Scuttle sharingNicolas Lœuillet2017-03-281-1/+1
|
* Scuttle sharingFrenchHope2017-03-281-0/+10
|
* Fix phpcs and testsThomas Citharel2017-01-241-14/+9
|
* add filepath testThomas Citharel2017-01-221-2/+2
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* add cli exportThomas Citharel2017-01-221-0/+82
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Added internal setting to enable/disable articles with paywallNicolas Lœuillet2016-11-221-0/+5
|
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-191-6/+25
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
| * Wallabag can’t work on PostgreSQL <= 9.1Jeremy Benoist2016-11-191-1/+22
| |
* | Added unmark.it sharingNicolas Lœuillet2016-11-091-0/+10
| | | | | | | | Fix #668
* | Add translations & migrationJeremy Benoist2016-10-311-12/+2
| |
* | 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