-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic couchdb support #397
base: master
Are you sure you want to change the base?
Conversation
Can I have some update about this ? This is very important if we want to use Couchdb 2.0 as database. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove var_dump and die.
Model/TokenManager.php
Outdated
@@ -28,6 +28,9 @@ public function createToken() | |||
*/ | |||
public function findTokenByToken($token) | |||
{ | |||
$result = $this->findTokenBy(array('token' => $token)); | |||
var_dump($result); | |||
die(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's that? 💩
Cleaning
Sorry for that, I have commited corrections |
Now cool waiting for acceptance too! |
Can this be integrate ? Can someone accept this ? Is there any problem ? |
There are a few conflicts. Maybe you can rebase on top of master. @dkarlovi should be able to get this merged. |
For my project, I use CouchDB database. So I had to work with FOSOAuthBundle and CouchDB.
I've use MongoDB Document and just edit existant couchdb model.
I still have some problem to verify client credentials using FindOneBy because CouchDB don't find my Id this way. So I had to search using juste secret then verify my id.
This is my first contribution so I wait for your advice and feedback.