We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi -
Thanks for open sourcing this time saver.
I noticed the cookie methods in djangoAuth.js need to be updated for later versions of angular
delete $cookies.token; changes to: $cookies.remove('token');
delete $cookies.token;
$cookies.remove('token');
$cookies.token changes to: $cookies.get('token')
$cookies.token
$cookies.get('token')
$cookies.token = data.key; changes to: $cookies.put("token", data.key);
$cookies.token = data.key;
$cookies.put("token", data.key);
Not sure if the this project is still active but thought I'd make a note here if someone wants to try this with a newer version of angular.
The text was updated successfully, but these errors were encountered:
You're right. I've already proposed that. Can someone update the code ?
Sorry, something went wrong.
+1 had same problem. Can't easily make PR because of other code changes intermingled and didn't fork ;|
No branches or pull requests
Hi -
Thanks for open sourcing this time saver.
I noticed the cookie methods in djangoAuth.js need to be updated for later versions of angular
delete $cookies.token;
changes to:
$cookies.remove('token');
$cookies.token
changes to:
$cookies.get('token')
$cookies.token = data.key;
changes to:
$cookies.put("token", data.key);
Not sure if the this project is still active but thought I'd make a note here if someone wants to try this with a newer version of angular.
The text was updated successfully, but these errors were encountered: