Skip to content

Commit

Permalink
Include firebase route (#1130)
Browse files Browse the repository at this point in the history
Co-authored-by: Ashley Davies <[email protected]>
  • Loading branch information
ashdavies and ashdavies authored Aug 22, 2024
1 parent c5cf11d commit ef74c5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloud-run/src/commonMain/kotlin/io/ashdavies/cloud/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ internal fun Application.main() {

post("/events:aggregate") { aggregateEvents(call) }

post("/auth") { firebaseAuth(call) }
post("/firebase/auth") { firebaseAuth(call) }

post("/token") { firebaseToken(call) }
post("/firebase/token") { firebaseToken(call) }

put("/token:verify") { verifyToken(call) }
put("/firebase/token:verify") { verifyToken(call) }

get("/hello") {
call.respond("Hello, World!")
Expand Down

0 comments on commit ef74c5e

Please sign in to comment.