Skip to content

chore: fix up scope name in docstrings #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/v1/clients.proto
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ message RoleResource {
service ServiceAccessTokensService {
// CreateServiceAccessToken creates a new service access token.
// A client can only create service access tokens for services granted via scopes,
// e.g. "sams::service_access_token.analytics::write" allows creating service access
// e.g. "sams::service_access_tokens.analytics::write" allows creating service access
// tokens for the Sourcegraph Analytics service. Service access token can only have scopes that
// belong to the same service, e.g. "analytics::analytics::read" when the service is
// "analytics".
Expand All @@ -336,7 +336,7 @@ service ServiceAccessTokensService {
}
// ListServiceAccessTokens returns a list of service access tokens in reverse chronological
// order by creation time. A client can only list service access tokens for services granted
// via scopes, e.g. "sams::service_access_token.analytics::read" allows listing service
// via scopes, e.g. "sams::service_access_tokens.analytics::read" allows listing service
// access tokens for the Sourcegraph Analytics service.
rpc ListServiceAccessTokens(ListServiceAccessTokensRequest) returns (ListServiceAccessTokensResponse) {
option idempotency_level = NO_SIDE_EFFECTS;
Expand Down
Loading