diff --git a/CRUD/handlers/crud_matcher_base.hpp b/CRUD/handlers/crud_matcher_base.hpp index fefb5c4..4ba0d69 100644 --- a/CRUD/handlers/crud_matcher_base.hpp +++ b/CRUD/handlers/crud_matcher_base.hpp @@ -34,8 +34,8 @@ namespace http::crud { _handlers["PUT"] = handler; return *this; } - crud_matcher_base & option(request_handler_type handler) { - _handlers["OPTION"] = handler; + crud_matcher_base & options(request_handler_type handler) { + _handlers["OPTIONS"] = handler; return *this; } template