You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
openapi: 3.0.0
info:
title: Client Service API
description: Business response for management companies, places, menus API.
contact:
name: test
url: test
email: test
version: 1.0.0
security:
BearerAuth:
client
ADMIN
paths:
/v1/me:
get:
security:
BearerAuth: [ client ]
tags:
serviceAccount
operationId: me
summary: Return list of accessed account
responses:
"200":
description: Return list of accessed account
content:
application/json:
schema:
type: array
uniqueItems: true
items:
type: string
"401":
description: Unauthorized.
The text was updated successfully, but these errors were encountered:
Description
Have configures security for endpoint but code always generate with annotation
@secured({SecurityRule.IS_AUTHENTICATED})
expected with annotation @secured({"client")
Micronaut version 4.1.0
openapi-generator version
7.0.0
OpenAPI declaration file content or url
openapi: 3.0.0
info:
title: Client Service API
description: Business response for management companies, places, menus API.
contact:
name: test
url: test
email: test
version: 1.0.0
security:
paths:
/v1/me:
get:
security:
tags:
operationId: me
summary: Return list of accessed account
responses:
"200":
description: Return list of accessed account
content:
application/json:
schema:
type: array
uniqueItems: true
items:
type: string
"401":
description: Unauthorized.
The text was updated successfully, but these errors were encountered: