No Description

account.js 269B

1234567891011
  1. angular.module('MyApp')
  2. .factory('Account', function($http) {
  3. return {
  4. getProfile: function() {
  5. return $http.get('/api/me');
  6. },
  7. updateProfile: function(profileData) {
  8. return $http.put('/api/me', profileData);
  9. }
  10. };
  11. });