Browse Source

reduce the amount of recent files returned with /dashboard defroute.

stable
Craig Oates 2 years ago
parent
commit
ff86cb159a
  1. 6
      src/web.lisp

6
src/web.lisp

@ -190,10 +190,10 @@
(append (auth:auth-user-data)
`(:alert ,alert
:storage-files
,(nera:latest-storage-editted-files 10 t)
:pages ,(nera:latest-editted-pages 10 t)
,(nera:latest-storage-editted-files 5 t)
:pages ,(nera:latest-editted-pages 5 t)
:archive-entries
,(nera::latest-archive-editted-entries 10 t)
,(nera::latest-archive-editted-entries 5 t)
:system-data ,(nera:system-data)))))
;; Not Authorised
(progn (utils:set-alert "You are not logged in." "error")

Loading…
Cancel
Save