mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:27:42 +00:00
fix(api): correct http methods for provider templates endpoints (#5228)
fix(api): correct http methods for provider templates endpoints
This commit is contained in:
@@ -614,7 +614,7 @@ Change an existing ldap identity provider on the instance
|
||||
|
||||
|
||||
|
||||
POST: /idps/ldap/{id}
|
||||
PUT: /idps/ldap/{id}
|
||||
|
||||
|
||||
### DeleteProvider
|
||||
@@ -627,7 +627,7 @@ Will remove all linked providers of this configuration on the users
|
||||
|
||||
|
||||
|
||||
POST: /idps/templates/{id}
|
||||
DELETE: /idps/templates/{id}
|
||||
|
||||
|
||||
### GetOrgIAMPolicy
|
||||
|
@@ -3071,7 +3071,7 @@ Change an existing ldap identity provider in the organisation
|
||||
|
||||
|
||||
|
||||
POST: /idps/ldap/{id}
|
||||
PUT: /idps/ldap/{id}
|
||||
|
||||
|
||||
### DeleteProvider
|
||||
@@ -3084,7 +3084,7 @@ Will remove all linked providers of this configuration on the users
|
||||
|
||||
|
||||
|
||||
POST: /idps/templates/{id}
|
||||
DELETE: /idps/templates/{id}
|
||||
|
||||
|
||||
### ListActions
|
||||
|
@@ -1048,7 +1048,7 @@ service AdminService {
|
||||
// Change an existing ldap identity provider on the instance
|
||||
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/idps/ldap/{id}"
|
||||
put: "/idps/ldap/{id}"
|
||||
body: "*"
|
||||
};
|
||||
|
||||
@@ -1061,8 +1061,7 @@ service AdminService {
|
||||
// Will remove all linked providers of this configuration on the users
|
||||
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/idps/templates/{id}"
|
||||
body: "*"
|
||||
delete: "/idps/templates/{id}"
|
||||
};
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
|
@@ -3046,7 +3046,7 @@ service ManagementService {
|
||||
// Change an existing ldap identity provider in the organisation
|
||||
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/idps/ldap/{id}"
|
||||
put: "/idps/ldap/{id}"
|
||||
body: "*"
|
||||
};
|
||||
|
||||
@@ -3059,8 +3059,7 @@ service ManagementService {
|
||||
// Will remove all linked providers of this configuration on the users
|
||||
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/idps/templates/{id}"
|
||||
body: "*"
|
||||
delete: "/idps/templates/{id}"
|
||||
};
|
||||
|
||||
option (zitadel.v1.auth_option) = {
|
||||
|
Reference in New Issue
Block a user