discourse/lib/topic_list_responder.rb
2020-05-14 17:17:42 +02:00

29 lines
729 B
Ruby

# frozen_string_literal: true
# Helps us respond with a topic list from a controller
module TopicListResponder
def respond_with_list(list)
discourse_expires_in 1.minute
list.draft_key = Draft::NEW_TOPIC
if current_user&.human?
list.draft_sequence = DraftSequence.current(current_user, list.draft_key)
list.draft = Draft.get(current_user, list.draft_key, list.draft_sequence)
end
respond_to do |format|
format.html do
@list = list
store_preloaded(list.preload_key, MultiJson.dump(TopicListSerializer.new(list, scope: guardian)))
render 'list/list'
end
format.json do
render_serialized(list, TopicListSerializer)
end
end
end
end