Skip to content

Instantly share code, notes, and snippets.

@mattantonelli
Last active May 19, 2016 15:27
Show Gist options
  • Save mattantonelli/4fb42c635936b501b2413f91d89be36d to your computer and use it in GitHub Desktop.
Save mattantonelli/4fb42c635936b501b2413f91d89be36d to your computer and use it in GitHub Desktop.
Transform ng-resource response that just returns a boolean
.factory('ForgotUsername', function($resource, API_BASE) {
return $resource(API_BASE + 'forgetUserID', {}, {
get: {
method: 'GET',
transformResponse: function(data, headers) {
return { Result: data === true };
}
}
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment