Skip to content

Commit 3427db5

Browse files
authored
Merge pull request #149 from finleap-connect/fix/policies-for-cluster-login-once-and-for-all
Fix trailing slash not present
2 parents 240305a + 3ffd764 commit 3427db5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build/package/helm/gateway/files/policies/policies.rego

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ default authorized = false
66

77
# list of allowed paths for any user
88
allowed_paths := [
9-
"/gateway.Gateway/",
10-
"/domain.Cluster/GetAll/",
11-
"/domain.Cluster/GetByName/",
12-
"/gateway.ClusterAuth/GetAuthToken/",
13-
"/domain.CommandHandlerExtensions/",
9+
"/gateway.Gateway",
10+
"/domain.Cluster/GetAll",
11+
"/domain.Cluster/GetByName",
12+
"/gateway.ClusterAuth/GetAuthToken",
13+
"/domain.CommandHandlerExtensions",
1414
"/common.ServiceInformationService/GetServiceInformation",
1515
"/domain.Cluster/GetByName",
1616
]

0 commit comments

Comments
 (0)