000541f178
* Fix routing on metrics * Show current metrics config * Ability to edit metrics config
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
import Application from '../application';
|
|
|
|
export default Application.extend({
|
|
queryRecord() {
|
|
return this.ajax(this.urlForQuery(), 'GET').then(resp => {
|
|
resp.id = resp.request_id;
|
|
return resp;
|
|
});
|
|
},
|
|
|
|
urlForUpdateRecord() {
|
|
return this.buildURL() + '/internal/counters/config';
|
|
},
|
|
|
|
urlForQuery() {
|
|
return this.buildURL() + '/internal/counters/config';
|
|
},
|
|
});
|