diff options
author | Steve <nilslice@gmail.com> | 2017-03-07 00:40:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 00:40:24 -0800 |
commit | c8bd692a44795f9354acb4583dc35ec3a2604096 (patch) | |
tree | e08663cff0a1879534c5434e52916b6649e1f056 /system/item | |
parent | 50613a4972b41d650857e88eae65b2a0e11176ce (diff) | |
parent | d690a82142f3a7c7fa899b970359e3e1da5ea238 (diff) |
Merge pull request #93 from ponzu-cms/ponzu-dev
[core] Add Updateable interface and HTTP/2 Push fixes
Diffstat (limited to 'system/item')
-rw-r--r-- | system/item/item.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/system/item/item.go b/system/item/item.go index 5b41693..286842b 100644 --- a/system/item/item.go +++ b/system/item/item.go @@ -42,6 +42,9 @@ type Sortable interface { // to the different lifecycles/events a struct may encounter. Item implements // Hookable with no-ops so our user can override only whichever ones necessary. type Hookable interface { + BeforeAcceptUpdate(http.ResponseWriter, *http.Request) error + AfterAcceptUpdate(http.ResponseWriter, *http.Request) error + BeforeAccept(http.ResponseWriter, *http.Request) error AfterAccept(http.ResponseWriter, *http.Request) error @@ -132,6 +135,16 @@ func (i Item) String() string { return fmt.Sprintf("Item ID: %s", i.UniqueID()) } +// BeforeAcceptUpdate is a no-op to ensure structs which embed Item implement Hookable +func (i Item) BeforeAcceptUpdate(res http.ResponseWriter, req *http.Request) error { + return nil +} + +// AfterAcceptUpdate is a no-op to ensure structs which embed Item implement Hookable +func (i Item) AfterAcceptUpdate(res http.ResponseWriter, req *http.Request) error { + return nil +} + // BeforeAccept is a no-op to ensure structs which embed Item implement Hookable func (i Item) BeforeAccept(res http.ResponseWriter, req *http.Request) error { return nil |