Skip to content

Commit

Permalink
fix: remove group validation from admin apis (#238)
Browse files Browse the repository at this point in the history
Signed-off-by: Kush Sharma <thekushsharma@gmail.com>
  • Loading branch information
kushsharma committed May 4, 2023
1 parent ca280be commit 1f2a7e6
Show file tree
Hide file tree
Showing 6 changed files with 787 additions and 804 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GOVERSION := $(shell go version | cut -d ' ' -f 3 | cut -d '.' -f 2)

.PHONY: build check fmt lint test test-race vet test-cover-html help install proto ui
.DEFAULT_GOAL := build
PROTON_COMMIT := "7b693b8a5feba28aa181033db3821c54c597a8d9"
PROTON_COMMIT := "2fd7d9fbbb2a929a299ab7f31dad4bdd0a0fd101"

ui:
@echo " > generating ui build"
Expand Down
26 changes: 11 additions & 15 deletions proto/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@
}
},
"/v1beta1/organizations/{orgId}/groups": {
"post": {
"get": {
"summary": "Create Group",
"operationId": "ShieldService_ListOrganizationGroups",
"responses": {
Expand All @@ -1311,20 +1311,16 @@
"type": "string"
},
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"userId": {
"type": "string"
},
"state": {
"type": "string"
}
}
}
"name": "userId",
"in": "query",
"required": false,
"type": "string"
},
{
"name": "state",
"in": "query",
"required": false,
"type": "string"
}
],
"tags": [
Expand Down

0 comments on commit 1f2a7e6

Please sign in to comment.