Skip to content

Commit

Permalink
Merge branch 'develop' into WOR-1215
Browse files Browse the repository at this point in the history
  • Loading branch information
blakery authored Aug 25, 2023
2 parents 307632f + e851a89 commit 915047d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ object Dependencies {


excludeGuava("com.google.apis" % "google-api-services-pubsub" % "v1-rev20230801-2.0.0"),
excludeGuava("com.google.apis" % "google-api-services-admin-directory" % "directory_v1-rev20230802-2.0.0"),
excludeGuava("com.google.apis" % "google-api-services-admin-directory" % "directory_v1-rev20230814-2.0.0"),


"com.github.jwt-scala" %% "jwt-core" % "9.4.3",
Expand Down
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") {
pathPrefix("profile" / "billing") {
pathEnd {
Expand Down

0 comments on commit 915047d

Please sign in to comment.