2018-07-10 14:02:23 +02:00
|
|
|
package crud
|
2018-07-08 22:50:01 +02:00
|
|
|
|
|
|
|
import (
|
2018-07-25 16:24:46 +02:00
|
|
|
"code.vikunja.io/api/models"
|
2018-07-08 22:50:01 +02:00
|
|
|
)
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// WebHandler defines the webhandler object
|
2018-07-08 22:50:01 +02:00
|
|
|
// This does web stuff, aka returns json etc. Uses CRUDable Methods to get the data
|
2018-07-10 14:02:23 +02:00
|
|
|
type WebHandler struct {
|
|
|
|
CObject interface {
|
2018-07-09 23:17:19 +02:00
|
|
|
models.CRUDable
|
|
|
|
models.Rights
|
|
|
|
}
|
2018-07-08 22:50:01 +02:00
|
|
|
}
|