Subject: | resource -> create POD don't match the code |
The code reads:
post "/${resource}.:format" => $triggers{create};
post "/${resource}" => $triggers{create};
but the POD said:
# this defines the following routes:
[...]
# POST /user/create
# POST /user/create.:format
[...]
See the "create" part is only in the pod, but not the code.