aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Form/Type/ClientType.php
Commit message (Collapse)AuthorAgeFilesLines
* Force default_protocol to generate an url inputJeremy Benoist2019-02-081-0/+1
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-1/+1
|
* Fix display the form errors correctlyadev2017-05-051-1/+5
| | | | | | | | | Use `property_path` form option to map underscored form fields to object properties @see https://github.com/symfony/symfony/issues/9162#issuecomment-25431148 Fix #3067
* Ensure access_token are removedJeremy Benoist2016-10-081-0/+46
When we remove the client, we should ensure that access_token are also removed. To ensure that, I created a test that generated an access_token. So when we remove the client, this association should be cascaded and shouldn’t generate an error. Also I moved some Api related stuff to the ApiBundle (like the developer controler and ClientType form)