-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Hi folks, I just added a custom validator (same_as) to my app and I would like to know whether it would be welcome to grape itself:
resources :passwords do
params do
requires :current_password, allow_blank: false
requires :password, allow_blank: false
requires :password_confirmation, allow_blank: false, same_as: :password
end
post do
end
endThanks.