diff --git a/contrib/backends/srndv2/src/srnd/frontend_http.go b/contrib/backends/srndv2/src/srnd/frontend_http.go index f81df96..fc31198 100644 --- a/contrib/backends/srndv2/src/srnd/frontend_http.go +++ b/contrib/backends/srndv2/src/srnd/frontend_http.go @@ -222,10 +222,15 @@ func (self httpFrontend) AllowNewsgroup(group string) bool { func (self *httpFrontend) Regen(msg ArticleEntry) { self.cache.Regen(msg) } + func (self *httpFrontend) RegenerateBoard(board string) { self.cache.RegenerateBoard(board) } +func (self *httpFrontend) RegenFrontPage() { + self.cache.RegenFrontPage() +} + func (self httpFrontend) regenAll() { self.cache.RegenAll() }