user
を使用して作成されたデータベースにすでにがありremote_avatar_url
、2つの画像(中バージョンと大バージョン)が処理されました。しかし今、ユーザーは自分の画像を別の画像に変更する機能が必要remote_avatar_url
です。これを行うと、画像は再処理されません。私が間違っていることはありますか?
users.rb
def update
user = User.find(params[:id])
user.remote_image_url = "https://www.google.com/images/srpr/logo3w.png"
user.save
end
ありがとう!