summaryrefslogtreecommitdiffstats
path: root/api4/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/api.go')
-rw-r--r--api4/api.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/api4/api.go b/api4/api.go
index 9172391dd..918154c0d 100644
--- a/api4/api.go
+++ b/api4/api.go
@@ -113,7 +113,7 @@ type API struct {
BaseRoutes *Routes
}
-func Init(a *app.App, root *mux.Router, full bool) *API {
+func Init(a *app.App, root *mux.Router) *API {
api := &API{
App: a,
BaseRoutes: &Routes{},
@@ -231,10 +231,7 @@ func Init(a *app.App, root *mux.Router, full bool) *API {
root.Handle("/api/v4/{anything:.*}", http.HandlerFunc(api.Handle404))
- // REMOVE CONDITION WHEN APIv3 REMOVED
- if full {
- a.InitEmailBatching()
- }
+ a.InitEmailBatching()
return api
}