SHARE
TWEET
Untitled
a guest
Dec 11th, 2014
4
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- 'use strict';
- //Articles service used for communicating with the articles REST endpoints
- angular.module('articles').factory('Articles', ['$resource',
- function($resource) {
- return $resource('articles/:articleId', {
- articleId: '@_id'
- }, {
- update: {
- method: 'PUT'
- }
- });
- }
- ]);
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.

