ring-swagger

ring-swagger & compojure-api
2018-05-16T09:49:38.000039Z

@ikitommi thanks for the clear explanation of the problem. It helps to see things in context :)

2018-05-16T16:33:55.000564Z

Hey, we're trying to use a param that starts with a number for :body-params and the clojure compiler is not letting it work

2018-05-16T16:34:15.000694Z

so like :body-params [360_variable :- string?]

2018-05-16T16:34:21.000657Z

any way to make that work?

ikitommi 2018-05-16T17:59:17.000110Z

would :body [{variable :360_variable} {:360_variable string?}] work?

ikitommi 2018-05-16T18:00:34.000822Z

or just: :body [body {:360_variable string?}]...

ecolui 2018-05-16T21:37:08.000343Z

Awesome, thanks for that advice @ ikitommi

ecolui 2018-05-16T21:37:18.000246Z

We appreciate it