Skip to content

Commit

Permalink
remove crowd from list of supported owner sources (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
Diewa authored Apr 8, 2024
1 parent a58f62e commit 1460bbb
Show file tree
Hide file tree
Showing 16 changed files with 1 addition and 635 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public enum ErrorCode {
SUBSCRIPTION_ENDPOINT_ADDRESS_CHANGE_EXCEPTION(INTERNAL_SERVER_ERROR),
OAUTH_PROVIDER_NOT_EXISTS(NOT_FOUND),
OAUTH_PROVIDER_ALREADY_EXISTS(BAD_REQUEST),
CROWD_GROUPS_COULD_NOT_BE_LOADED(INTERNAL_SERVER_ERROR),
TOPIC_BLACKLISTED(FORBIDDEN),
THROUGHPUT_QUOTA_VIOLATION(429),
TOPIC_NOT_UNBLACKLISTED(BAD_REQUEST),
Expand Down
9 changes: 0 additions & 9 deletions hermes-console/json-server/db.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,6 @@
"autocomplete": true,
"deprecated": false
},
{
"name": "Crowd Catalog",
"autocomplete": false,
"deprecated": false
},
{
"name": "Deprecated catalog",
"autocomplete": true,
Expand Down Expand Up @@ -593,10 +588,6 @@
},
"owner": {
"sources": [
{
"name": "Crowd Catalog",
"placeholder": "Crowd group (or groups separated by ',')"
},
{
"name": "Service Catalog",
"placeholder": "Service name from Service Catalog"
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ public void setLabel(String label) {

public static final class Owner {
private List<OwnerSource> sources = Lists.newArrayList(
new OwnerSource("Crowd", "Crowd group (or groups separated by ',')"));
new OwnerSource("Plaintext", "Name of the owner"));

public List<OwnerSource> getSources() {
return sources;
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1460bbb

Please sign in to comment.