おそらく下記のようにvalidatesと書いてしまっていると思うのでvalidateと修正する。
Class user < ApplicationRecord
# NG
validates :custom_method
# OK
validate :custom_method
def custom_method
...
end
end
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
おそらく下記のようにvalidatesと書いてしまっていると思うのでvalidateと修正する。
Class user < ApplicationRecord
# NG
validates :custom_method
# OK
validate :custom_method
def custom_method
...
end
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked