モデルafter_create
にコールバックがあります:Tag
def auto_vote
params = parametrize_media_tag(media_tag)
Tag::Vote.cast_vote(params)
end
これは私にこのエラーを与えます:
undefined method `cast_vote' for #<Class:0x7ae7a90>
私のTag::Vote
モデルは非常に単純です。
class Tag::Vote < Vote
def self.cast_vote(params)
Vote.cast_vote_of_type(params, self.class.name)
end
end
cast_vote
Rails がメソッドを検出しないのはなぜですか?