FIX: allow staff to remove tags from queued topics

This commit is contained in:
Arpit Jalan
2018-06-26 16:59:33 +05:30
parent a603660ba5
commit 7efdccdbc5
2 changed files with 19 additions and 2 deletions

View File

@@ -25,10 +25,10 @@ class QueuedPostsController < ApplicationController
update_params = params[:queued_post]
qp.raw = update_params[:raw] if update_params[:raw].present?
unless qp.topic_id
if qp.topic_id.blank? && params[:queued_post][:state].blank?
qp.post_options['title'] = update_params[:title] if update_params[:title].present?
qp.post_options['category'] = update_params[:category_id].to_i if update_params[:category_id].present?
qp.post_options['tags'] = update_params[:tags] if update_params[:tags].present?
qp.post_options['tags'] = update_params[:tags]
end
qp.save(validate: false)