mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
chore(slo): add access:public missing options for public routes (#195114)
This commit is contained in:
parent
ef4755a063
commit
8281517ef5
1 changed files with 2 additions and 0 deletions
|
@ -516,6 +516,7 @@ const deleteSloInstancesRoute = createSloServerRoute({
|
|||
endpoint: 'POST /api/observability/slos/_delete_instances 2023-10-31',
|
||||
options: {
|
||||
tags: ['access:slo_write'],
|
||||
access: 'public',
|
||||
},
|
||||
params: deleteSLOInstancesParamsSchema,
|
||||
handler: async ({ context, params }) => {
|
||||
|
@ -532,6 +533,7 @@ const findSloDefinitionsRoute = createSloServerRoute({
|
|||
endpoint: 'GET /api/observability/slos/_definitions 2023-10-31',
|
||||
options: {
|
||||
tags: ['access:slo_read'],
|
||||
access: 'public',
|
||||
},
|
||||
params: findSloDefinitionsParamsSchema,
|
||||
handler: async ({ context, params, logger }) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue