Skip to content

Commit

Permalink
chore: remove unused route GET /admin/stores (#2329)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt committed Dec 7, 2022
1 parent cedb603 commit 1e11655
Showing 1 changed file with 1 addition and 10 deletions.
Expand Up @@ -32,16 +32,7 @@ class StoreRouteADM(routeData: KnoraRouteData)
* Returns the route.
*/
override def makeRoute: Route = Route {
path("admin" / "store") {
get { requestContext =>
/**
* Maybe return some statistics about the store, e.g., what triplestore, number of triples in
* each named graph and in total, etc.
*/
// TODO: Implement some simple return
requestContext.complete("Hello World")
}
} ~ path("admin" / "store" / "ResetTriplestoreContent") {
path("admin" / "store" / "ResetTriplestoreContent") {
post {
/* ResetTriplestoreContent */
entity(as[Seq[RdfDataObject]]) { apiRequest =>
Expand Down

0 comments on commit 1e11655

Please sign in to comment.