2018-10-25 16:51:20 +02:00
|
|
|
/* eslint-disable
|
|
|
|
no-undef,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2018-10-25 16:50:16 +02:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
'use strict'
|
2016-05-09 18:15:04 +02:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
Application.Services.factory('OpenAPIClient', ['$resource', $resource =>
|
|
|
|
$resource('/api/open_api_clients/:id',
|
|
|
|
{ id: '@id' }, {
|
|
|
|
resetToken: {
|
|
|
|
method: 'PATCH',
|
|
|
|
url: '/api/open_api_clients/:id/reset_token'
|
|
|
|
},
|
|
|
|
update: {
|
|
|
|
method: 'PUT'
|
|
|
|
}
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
])
|