Change prefix from 'on' to 'handle'

This commit is contained in:
Akira Tempaku 2024-04-14 16:39:43 +09:00
commit e84b170a03
2 changed files with 9 additions and 9 deletions

View file

@ -58,7 +58,7 @@
:do (ql:quickload pkg)
(loop
:for method :in *http-request-methods*
:do (let ((handler (find-symbol (concatenate 'string "ON-" (string method))
:do (let ((handler (find-symbol (concatenate 'string "HANDLE-" (string method))
pkg)))
(when handler
(setf (ng:route app url :method method) handler))))))