mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-10 21:24:20 +01:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Application.Services.factory('ICalendar', ['$resource', function ($resource) {
|
||
|
return $resource('/api/i_calendar/:id',
|
||
|
{ id: '@id' }, {
|
||
|
events: {
|
||
|
method: 'GET',
|
||
|
url: '/api/i_calendar/events'
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
}]);
|