kibana/x-pack/plugins/ml/server/routes/notification_settings.ts
James Gowdy d8c15f5ad3
[ML] Adding endpoint capability checks (#64662)
* [ML] Adding endpoint capability checks

* adding missing capability checks

* fixing test

* removing commented code

* fixing functional test

* fixing functional tests

* changes based on review

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-04-29 18:25:48 +01:00

45 lines
1.3 KiB
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { wrapError } from '../client/error_wrapper';
import { RouteInitialization } from '../types';
/**
* Routes for notification settings
*/
export function notificationRoutes({ router, mlLicense }: RouteInitialization) {
/**
* @apiGroup NotificationSettings
*
* @api {get} /api/ml/notification_settings Get notification settings
* @apiName GetNotificationSettings
* @apiDescription Returns cluster notification settings
*/
router.get(
{
path: '/api/ml/notification_settings',
validate: false,
options: {
tags: ['access:ml:canAccessML'],
},
},
mlLicense.fullLicenseAPIGuard(async (context, request, response) => {
try {
const params = {
includeDefaults: true,
filterPath: '**.xpack.notification',
};
const resp = await context.ml!.mlClient.callAsCurrentUser('cluster.getSettings', params);
return response.ok({
body: resp,
});
} catch (e) {
return response.customError(wrapError(e));
}
})
);
}