sahat/satellizer

View on GitHub
examples/server/php/public/services/account.js

Summary

Maintainability
A
1 hr
Test Coverage
angular.module('MyApp')
  .factory('Account', function($http) {
    return {
      getProfile: function() {
        return $http.get('/api/me');
      },
      updateProfile: function(profileData) {
        return $http.put('/api/me', profileData);
      }
    };
  });