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.
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.tokenchanges 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.