rails 4でacts_as_tggable_on gemを強力なパラメータで使用するにはどうすればよいですか?
もつ:
class User < ActiveRecord::Base
acts_as_tagger
end
class Post < ActiveRecord::Base
acts_as_taggable
end
@post = current_user.tag(@post, :with => :tag_list)
def post_params
params.require(:post).permit(:text, :user_id, :tag_list)
end
@post に (post_params) を追加するにはどうすればよいですか?