2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-09-12 17:46:43 -04:00
|
|
|
class ComposerMessagesController < ApplicationController
|
|
|
|
|
2018-01-31 23:17:59 -05:00
|
|
|
requires_login
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
def index
|
2016-06-06 16:58:35 -04:00
|
|
|
finder = ComposerMessagesFinder.new(current_user, params.slice(:composer_action, :topic_id, :post_id))
|
2016-06-06 13:52:24 -04:00
|
|
|
json = { composer_messages: [finder.find].compact }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2016-06-08 17:20:32 -04:00
|
|
|
if params[:topic_id].present?
|
2016-06-06 16:58:35 -04:00
|
|
|
topic = Topic.where(id: params[:topic_id]).first
|
|
|
|
if guardian.can_see?(topic)
|
|
|
|
json[:extras] = { duplicate_lookup: TopicLink.duplicate_lookup(topic) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-06 13:52:24 -04:00
|
|
|
render_json_dump(json, rest_serializer: true)
|
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|