Exemplo n.º 1
0
func (this *ScopesController) Show(c *gin.Context) {
	params := *params(c, "scope")
	service := models.NewScopeService(params)
	if scope, err := service.Scope(); err == nil {
		c.JSON(200, &scope)
	} else {
		c.JSON(404, err)
	}
}
Exemplo n.º 2
0
func (this *ScopesController) Index(c *gin.Context) {
	params := *params(c)
	service := models.NewScopeService(params)
	if scopes, err := service.Scopes(); err == nil {
		c.JSON(200, &scopes)
	} else {
		c.JSON(500, err)
	}
}