We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0-alpha31
(s/def ::version (s/and int? #{1 2})) (GET "/test/:v" request :path-params [v :- ::version] (r/ok v))
when requesting GET /test/1 results in
GET /test/1
{:problems [{:message "Validation error", :details {:path ["v"], :pred [1 2], :val "1", :via ["spec$60151/v"], :in ["v"], :phrase.alpha/mappings {:x0 1, :x1 2, :x2 ["x1" "x0"]}, :phrase.alpha/via []}}]}
However
(s/def ::version #{1 2}) (GET "/test/:v" request :path-params [v :- (s/and int? ::version)] (r/ok v))
when requesting GET /test/1 does give me the expected response body of 1.
1
The text was updated successfully, but these errors were encountered:
@jeroenvanwijgerden what is the "s" namespace?
Sorry, something went wrong.
No branches or pull requests
Library Version(s)
2.0.0-alpha31
Problem
when requesting
GET /test/1
results inHowever
when requesting
GET /test/1
does give me the expected response body of1
.The text was updated successfully, but these errors were encountered: