forked from baron/baron-sso
gateway 분리 아키텍처
This commit is contained in:
@@ -470,6 +470,24 @@ paths:
|
||||
schema:
|
||||
$ref: "#/components/schemas/MessageResponse"
|
||||
|
||||
/api/v1/user/rp/linked:
|
||||
get:
|
||||
tags: [User]
|
||||
summary: 연동된 RP 목록 조회
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/LinkedRpListResponse"
|
||||
"401":
|
||||
description: Unauthorized
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/ErrorResponse"
|
||||
|
||||
/api/v1/sessions:
|
||||
get:
|
||||
tags: [Session]
|
||||
@@ -1117,6 +1135,32 @@ components:
|
||||
code:
|
||||
type: string
|
||||
|
||||
LinkedRpSummary:
|
||||
type: object
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
logo:
|
||||
type: string
|
||||
lastAuthenticatedAt:
|
||||
type: string
|
||||
status:
|
||||
type: string
|
||||
scopes:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
|
||||
LinkedRpListResponse:
|
||||
type: object
|
||||
properties:
|
||||
items:
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/components/schemas/LinkedRpSummary"
|
||||
|
||||
SessionSummary:
|
||||
type: object
|
||||
properties:
|
||||
|
||||
Reference in New Issue
Block a user