Skip to content

Commit 85ea565

Browse files
authored
Fix: GetFeatureFlags doesn't need any authentication (#298)
So it's allowed to call without being authenticated.
1 parent b0c4bc1 commit 85ea565

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

gen/go/qdrant/cloud/ui/v1/featureflags.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/go/qdrant/cloud/ui/v1/featureflags_grpc.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/openapiv2/qdrant/cloud/ui/v1/featureflags.swagger.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/python/qdrant/cloud/ui/v1/featureflags_pb2.py

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/python/qdrant/cloud/ui/v1/featureflags_pb2_grpc.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/ui/v1/featureflags-FeatureFlagsService_connectquery.d.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/ui/v1/featureflags-FeatureFlagsService_connectquery.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/ui/v1/featureflags_pb.d.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/ui/v1/featureflags_pb.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/qdrant/cloud/ui/v1/featureflags.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import "qdrant/cloud/common/v1/common.proto";
99
service FeatureFlagsService {
1010
// Gets the feature flags for the UI.
1111
// Required permissions:
12-
// - authenticated only
12+
// - None: no authentication required
1313
rpc GetFeatureFlags(GetFeatureFlagsRequest) returns (GetFeatureFlagsResponse) {
14-
// permissions
15-
option (common.v1.permissions) = "";
14+
// authentication not required
15+
option (qdrant.cloud.common.v1.requires_authentication) = false;
1616
// custom account-id expression
1717
option (qdrant.cloud.common.v1.account_id_expression) = ""; // not relevant for this method
1818
// gRPC Gateway REST call

0 commit comments

Comments
 (0)