Skip to content

Commit

Permalink
Parker/un revert cloud micronaut (#6512)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmossman committed May 11, 2023
1 parent 7a5ed60 commit cb46216
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
12 changes: 1 addition & 11 deletions airbyte-api/src/main/openapi/cloud-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ paths:
post:
tags:
- permission
summary: Creates a permission ressource
summary: Creates a permission resource
operationId: createPermission
requestBody:
content:
Expand Down Expand Up @@ -588,19 +588,9 @@ paths:
- web_backend
summary: Revokes a user's session token.
operationId: webBackendRevokeUserSession
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UserIdRequestBody"
required: false
responses:
"204":
description: The user's session token was expired successfully.
"404":
$ref: "#/components/responses/NotFoundResponse"
"422":
$ref: "#/components/responses/InvalidInputResponse"
/v1/web_backend/permissioned_cloud_workspace/create:
post:
tags:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class UserService extends AirbyteRequestService {
}

public async revokeUserSession(): Promise<void> {
return this.fetch("v1/web_backend/users/revoke_user_session");
return this.fetch("v1/web_backend/users/revoke_user_session", {});
}

public async remove(workspaceId: string, email: string): Promise<void> {
Expand Down
1 change: 1 addition & 0 deletions deps.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slugify = { module = "com.github.slugify:slugify", version = "2.4" }
spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version = "4.7.3" }
spring-core = { module = "org.springframework:spring-core", version = "6.0.8" }
stripe = { module = "com.stripe:stripe-java", version = "20.102.0" }
swagger-annotations = { module = "io.swagger:swagger-annotations", version.ref = "swagger" }
temporal-sdk = { module = "io.temporal:temporal-sdk", version.ref = "temporal" }
temporal-serviceclient = { module = "io.temporal:temporal-serviceclient", version.ref = "temporal" }
Expand Down

0 comments on commit cb46216

Please sign in to comment.