Files
sablier/app/http/routes/theme_list.go

14 lines
211 B
Go

package routes
import (
"net/http"
"github.com/gin-gonic/gin"
)
func (s *ServeStrategy) ServeDynamicThemes(c *gin.Context) {
c.JSON(http.StatusOK, map[string]interface{}{
"themes": s.Theme.List(),
})
}