Sha256: ea56d6b475316eba5985c1958669b2f718759650fe73b4e329b0caf6457570e3
Contents?: true
Size: 230 Bytes
Versions: 3
Compression:
Stored size: 230 Bytes
Contents
angular.module('plan-b.itineraries.services', ['ngResource']) .factory('Itinerary', function($rootScope, $resource) { return $resource($rootScope.mountPath + '/itineraries/:id', { id: '@id' }, { update: { method: 'PUT' }}); });
Version data entries
3 entries across 3 versions & 1 rubygems