Skip to content

Commit

Permalink
Fix endpoint API paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tarkah committed Nov 13, 2024
1 parent 1e66aeb commit 6c4733c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/service-types/src/api/v1/services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ operation!(
operation!(
RefreshToken,
GET,
"services/refreshToken",
"services/refresh_token",
NOT_EXPIRED | BEARER_TOKEN | SERVICE_ACCOUNT,
resp: String
);

operation!(
RefreshIssueToken,
GET,
"services/refreshIssueToken",
"services/refresh_issue_token",
BEARER_TOKEN | SERVICE_ACCOUNT,
resp: String
);
Expand Down

0 comments on commit 6c4733c

Please sign in to comment.