mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: better error message when trying to approve post for closed/deleted topic
This commit is contained in:
parent
789a6aeb21
commit
3232ce8265
@ -25,6 +25,7 @@ class QueuedPostsController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
state = params[:queued_post][:state]
|
state = params[:queued_post][:state]
|
||||||
|
begin
|
||||||
if state == 'approved'
|
if state == 'approved'
|
||||||
qp.approve!(current_user)
|
qp.approve!(current_user)
|
||||||
elsif state == 'rejected'
|
elsif state == 'rejected'
|
||||||
@ -33,6 +34,9 @@ class QueuedPostsController < ApplicationController
|
|||||||
UserDestroyer.new(current_user).destroy(qp.user, user_deletion_opts)
|
UserDestroyer.new(current_user).destroy(qp.user, user_deletion_opts)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
rescue StandardError => e
|
||||||
|
return render_json_error e.message
|
||||||
|
end
|
||||||
|
|
||||||
render_serialized(qp, QueuedPostSerializer, root: :queued_posts)
|
render_serialized(qp, QueuedPostSerializer, root: :queued_posts)
|
||||||
end
|
end
|
||||||
|
@ -70,7 +70,7 @@ class QueuedPost < ActiveRecord::Base
|
|||||||
created_post = creator.create
|
created_post = creator.create
|
||||||
|
|
||||||
unless created_post && creator.errors.blank?
|
unless created_post && creator.errors.blank?
|
||||||
raise StandardError, "Failed to create post #{raw[0..100]} #{creator.errors.full_messages.inspect}"
|
raise StandardError.new(creator.errors.full_messages.join(" "))
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user