aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Entity/AccessToken.php
Commit message (Collapse)AuthorAgeFilesLines
* Cascade delete on oauth2 table when deleting a userJeremy Benoist2019-05-101-0/+1
|
* Fix utf8mb4 on vendor tablesJeremy Benoist2018-11-281-0/+16
| | | | | | | | | | | | | | When creating the schema for test these tables use default length for string: 255. Which fail when using utf8mb4. > Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes Also move the `setKeepStaticConnections` in before and after class to avoid: > SAVEPOINT DOCTRINE2_SAVEPOINT_2 does not exist See https://github.com/dmaicher/doctrine-test-bundle#troubleshooting
* Fix entities definitionJeremy Benoist2016-10-091-1/+1
| | | | | | | | As per Doctrine said in the debug tool bar: - The field Wallabag\ApiBundle\Entity\Client#refreshTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\RefreshToken#client does not contain the required 'inversedBy="refreshTokens"' attribute. - The field Wallabag\ApiBundle\Entity\Client#accessTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\AccessToken#client does not contain the required 'inversedBy="accessTokens"' attribute.
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-1/+1
| | | | symfony-upgrade-fixer fix src/Wallabag/
* remove old implementation for login/register/recoverNicolas LÅ“uillet2015-10-031-1/+1
|
* * public registrationNicolas LÅ“uillet2015-10-031-0/+31
* remove WSSE implementation * add oAuth2 implementation