The backend for the AiteStory website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
400 B

package viewmodel
import (
"fmt"
"git.aiterp.net/gisle/wrouter/auth"
)
// PageDelete is the view model used to view the page's delete form.
type PageDelete struct {
Base
PageBase
}
// Setup sets up the page view model. It should be calles last
func (pv *PageDelete) Setup(user *auth.User) {
pv.HideMenu = false
pv.setupBase(user, pv.Page.Name, fmt.Sprintf("/page/delete/%s", pv.Page.ID))
}