1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

35 lines
828 B
JavaScript

/* eslint-disable
no-undef,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
'use strict'
Application.Services.factory('AuthProvider', ['$resource', $resource =>
$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'
}
}
)
])