Skip to content

Commit

Permalink
add requests api healthcheck endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
kenoir committed Jan 26, 2024
1 parent b600b23 commit c137f3f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion requests/src/main/scala/weco/api/requests/RequestsApi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@ class RequestsApi(
} ~ get {
lookupRequests(userIdentifier)
}
}
},
pathPrefix("management") {
concat(path("healthcheck") {
get {
complete("message" -> "ok")
}
})
}
)
}

Expand Down

0 comments on commit c137f3f

Please sign in to comment.