我的Gemfiles
是:
gem 'rails', '~> 5.2'
gem 'action-store'
其中收藏的 action
# questions_controller.rb
def star
current_user.star_question(params[:id])
render plain: "1"
end
用户的模型user.rb
:
action_store :star, :question, counter_cache: true, user_counter_cache: true
现在每次点击 "收藏" 按钮,Question
的updated_at
这个时间会发生变化,怎么才能禁止 updated_at 改变呢?
谢谢大家。