You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
552 B
18 lines
552 B
package controllers
|
|
|
|
import javax.inject.Inject
|
|
|
|
import com.xsn.explorer.models.base.{Limit, Offset, PaginatedQuery}
|
|
import com.xsn.explorer.services.BalanceService
|
|
import controllers.common.{MyJsonController, MyJsonControllerComponents}
|
|
|
|
class BalancesController @Inject() (
|
|
balanceService: BalanceService,
|
|
cc: MyJsonControllerComponents)
|
|
extends MyJsonController(cc) {
|
|
|
|
def getRichest(offset: Int, limit: Int) = publicNoInput { _ =>
|
|
val query = PaginatedQuery(Offset(offset), Limit(limit))
|
|
balanceService.getRichest(query)
|
|
}
|
|
}
|