Il est probablement écrit comme «valide» comme ci-dessous, alors modifiez-le comme «valider».
Class user < ApplicationRecord
# NG
validates :custom_method
# OK
validate :custom_method
def custom_method
...
end
end
Recommended Posts