This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
vikunja-api/routes/crud/helper.go
2018-07-25 16:24:46 +02:00

14 lines
269 B
Go

package crud
import (
"code.vikunja.io/api/models"
)
// WebHandler defines the webhandler object
// This does web stuff, aka returns json etc. Uses CRUDable Methods to get the data
type WebHandler struct {
CObject interface {
models.CRUDable
models.Rights
}
}