mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
23 lines
462 B
JavaScript
23 lines
462 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('Notification', ['$resource', function ($resource) {
|
|
return $resource('/api/notifications/:id',
|
|
{ id: '@id' }, {
|
|
query: {
|
|
isArray: false
|
|
},
|
|
update: {
|
|
method: 'PUT'
|
|
},
|
|
polling: {
|
|
url: '/api/notifications/polling',
|
|
method: 'GET'
|
|
},
|
|
last_unread: {
|
|
url: '/api/notifications/last_unread',
|
|
method: 'GET'
|
|
}
|
|
}
|
|
);
|
|
}]);
|