1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/assets/javascripts/services/authProvider.js

24 lines
519 B
JavaScript
Raw Normal View History

2018-11-21 11:08:53 +01:00
'use strict';
2016-03-23 18:39:41 +01:00
2018-11-27 15:16:23 +01:00
Application.Services.factory('AuthProvider', ['$resource', function ($resource) {
return $resource('/api/auth_providers/:id',
{ id: '@id' }, {
update: {
method: 'PUT'
},
mapping_fields: {
method: 'GET',
url: '/api/auth_providers/mapping_fields'
},
active: {
method: 'GET',
url: '/api/auth_providers/active'
},
send_code: {
method: 'POST',
url: '/api/auth_providers/send_code'
}
}
2018-11-27 15:16:23 +01:00
);
}]);