From 6e8c6bff569b3450f8e532c6c18d7c6e65d55b2f Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Sat, 11 May 2019 21:34:08 -0600 Subject: [PATCH] infra: Remove unused file --- infra/deployment/config/ltc-routes | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 infra/deployment/config/ltc-routes diff --git a/infra/deployment/config/ltc-routes b/infra/deployment/config/ltc-routes deleted file mode 100644 index 066c626..0000000 --- a/infra/deployment/config/ltc-routes +++ /dev/null @@ -1,27 +0,0 @@ -# Routes -# This file defines all application routes (Higher priority routes first) -# https://www.playframework.com/documentation/latest/ScalaRouting -# ~~~~ - -GET /health controllers.HealthController.check() -# GET /maintenance controllers.MaintenanceController.run(query: String ?= "") - -GET /v2/blocks/:blockhash/light-wallet-transactions controllers.BlocksController.getLightTransactionsV2(blockhash: String, limit: Int ?= 10, lastSeenTxid: Option[String]) - -GET /transactions/:txid controllers.TransactionsController.getTransaction(txid: String) -GET /transactions/:txid/raw controllers.TransactionsController.getRawTransaction(txid: String) -POST /transactions controllers.TransactionsController.sendRawTransaction() - -GET /addresses/:address controllers.AddressesController.getBy(address: String) -GET /v2/addresses/:address/transactions controllers.AddressesController.getLightWalletTransactions(address: String, limit: Int ?= 10, lastSeenTxid: Option[String], order: String ?= "desc") - -GET /blocks controllers.BlocksController.getLatestBlocks() -GET /blocks/headers controllers.BlocksController.getBlockHeaders(lastSeenHash: Option[String], limit: Int ?= 10) - -GET /blocks/:query controllers.BlocksController.getDetails(query: String) -GET /blocks/:query/raw controllers.BlocksController.getRawBlock(query: String) -GET /v2/blocks/:blockhash/transactions controllers.BlocksController.getTransactionsV2(blockhash: String, limit: Int ?= 10, lastSeenTxid: Option[String]) - -GET /stats controllers.StatisticsController.getStatus() - -GET /v2/balances controllers.BalancesController.getHighest(limit: Int ?= 10, lastSeenAddress: Option[String])