Skip to content

Commit

Permalink
Fix broken path in RBAC edit authorization (#22)
Browse files Browse the repository at this point in the history
# Description 

During testing we found this small path typo. Verified in e2e tests.
  • Loading branch information
benrules3 authored Oct 11, 2024
1 parent e7f2c3f commit 26d69e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compass_sdk/compass.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(
"add_context": "/api/v1/indexes/{index_name}/documents/add_context/{doc_id}",
"refresh": "/api/v1/indexes/{index_name}/refresh",
"push_documents": "/api/v2/indexes/{index_name}/documents",
"edit_group_authorization": "api/v1/indexes/{index_name}/group_authorization",
"edit_group_authorization": "/api/v1/indexes/{index_name}/group_authorization",
}
logger.setLevel(logger_level.value)

Expand Down

0 comments on commit 26d69e3

Please sign in to comment.