Skip to content

Commit

Permalink
Revert "remove incorrect path"
Browse files Browse the repository at this point in the history
This reverts commit deb1a8f.
  • Loading branch information
blakery committed Aug 25, 2023
1 parent deb1a8f commit ec474b1
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,18 @@ trait UserApiService
}
}
} ~
pathPrefix("profile" / "billing") {
pathEnd {
get {
passthrough(UserApiService.billingUrl, HttpMethods.GET)
}
} ~
path(Segment) { projectName =>
get {
passthrough(UserApiService.billingProjectUrl(projectName), HttpMethods.GET)
}
}
} ~
pathPrefix("api") {
path("profile" / "billingAccounts") {
get {
Expand Down

0 comments on commit ec474b1

Please sign in to comment.