Skip to content

Commit

Permalink
chore: Set version to 23.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anarsultanov authored and github-actions[bot] committed Feb 22, 2024
1 parent 3d26df2 commit d770247
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
20 changes: 19 additions & 1 deletion docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi" : "3.0.3",
"info" : {
"title" : "Keycloak Multi-Tenancy",
"version" : "23.1.0"
"version" : "23.2.0"
},
"servers" : [ {
"url" : "{{keycloakUrl}}/auth/realms/{{realmName}}"
Expand Down Expand Up @@ -89,6 +89,24 @@
}
}
},
"put" : {
"summary" : "Update tenant",
"operationId" : "updateTenant",
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/TenantRepresentation"
}
}
}
},
"responses" : {
"200" : {
"description" : "OK"
}
}
},
"delete" : {
"summary" : "Delete tenant",
"operationId" : "deleteTenant",
Expand Down
13 changes: 12 additions & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
openapi: 3.0.3
info:
title: Keycloak Multi-Tenancy
version: 23.1.0
version: 23.2.0
servers:
- url: "{{keycloakUrl}}/auth/realms/{{realmName}}"
paths:
Expand Down Expand Up @@ -60,6 +60,17 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/TenantRepresentation'
put:
summary: Update tenant
operationId: updateTenant
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TenantRepresentation'
responses:
"200":
description: OK
delete:
summary: Delete tenant
operationId: deleteTenant
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>dev.sultanov</groupId>
<artifactId>keycloak-multi-tenancy</artifactId>
<version>23.1.0</version>
<version>23.2.0</version>
<packaging>jar</packaging>

<name>Keycloak Multi-Tenancy</name>
Expand Down

0 comments on commit d770247

Please sign in to comment.