mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-12-22 19:07:33 +01:00
30 lines
580 B
Go
30 lines
580 B
Go
|
package dashboard
|
||
|
|
||
|
import (
|
||
|
"github.com/jackc/pgx/v4/pgxpool"
|
||
|
"github.com/labstack/echo/v4"
|
||
|
"github.com/nleof/goyesql"
|
||
|
)
|
||
|
|
||
|
type api struct {
|
||
|
db *pgxpool.Pool
|
||
|
q goyesql.Queries
|
||
|
}
|
||
|
|
||
|
func InitDashboardApi(e *echo.Echo, db *pgxpool.Pool, queries goyesql.Queries) {
|
||
|
g := e.Group("/dashboard")
|
||
|
|
||
|
g.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
|
||
|
return func(c echo.Context) error {
|
||
|
c.Set("api", &api{
|
||
|
db: db,
|
||
|
q: queries,
|
||
|
})
|
||
|
return next(c)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
g.GET("/new-registrations", handleNewRegistrations)
|
||
|
g.GET("/transactions-count", handleTransactionsCount)
|
||
|
}
|