Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
node_modules/
platforms/

.idea/
194 changes: 0 additions & 194 deletions .idea/workspace.xml

This file was deleted.

9 changes: 9 additions & 0 deletions www/js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ angular.module('SimpleRESTIonic.services', [])
return Backand.signin(email, password);
};

service.socialSignIn = function (provider) {
return Backand.socialSignIn(provider);
};

service.socialSignUp = function (provider) {
return Backand.socialSignUp(provider);

};

service.anonymousLogin= function(){
// don't have to do anything here,
// because we set app token att app.js
Expand Down