hoplon / hoplon-castra-template

Create new Hoplon projects with Castra
8 stars 6 forks source link

handler bug #5

Open laforge49 opened 8 years ago

laforge49 commented 8 years ago

The generated code does not work:

(def app
  (-> app-routes
      (d/wrap-defaults d/api-defaults)
      (castra/wrap-castra-session "a 16-byte secret")
      (castra/wrap-castra 'test.api)))

This works:

(def app
  (-> app-routes
      (castra/wrap-castra 'castra-chat2.api)
      (castra/wrap-castra-session "a 16-byte secret")
      (d/wrap-defaults d/api-defaults)))