mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +01:00
24 lines
519 B
JavaScript
24 lines
519 B
JavaScript
'use strict';
|
|
|
|
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'
|
|
}
|
|
}
|
|
);
|
|
}]);
|