discourse/app/controllers/composer_messages_controller.rb
Sam 41986cdb2f Refactor requires login logic, reduce duplicate code
This also corrects the positioning in the chain of the check
and removes misuse of prepend_before_action
2018-02-01 15:17:59 +11:00

21 lines
581 B
Ruby

require_dependency 'composer_messages_finder'
class ComposerMessagesController < ApplicationController
requires_login
def index
finder = ComposerMessagesFinder.new(current_user, params.slice(:composer_action, :topic_id, :post_id))
json = { composer_messages: [finder.find].compact }
if params[:topic_id].present?
topic = Topic.where(id: params[:topic_id]).first
if guardian.can_see?(topic)
json[:extras] = { duplicate_lookup: TopicLink.duplicate_lookup(topic) }
end
end
render_json_dump(json, rest_serializer: true)
end
end