mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
When running `ensure_login_required` it should always happen prior to `check_xhr` cause check xhr will trigger a 200 response
12 lines
283 B
Ruby
12 lines
283 B
Ruby
require_dependency 'html_to_markdown'
|
|
|
|
class ComposerController < ApplicationController
|
|
|
|
prepend_before_action :check_xhr, :ensure_logged_in
|
|
|
|
def parse_html
|
|
markdown_text = HtmlToMarkdown.new(params[:html]).to_markdown
|
|
|
|
render json: { markdown: markdown_text }
|
|
end
|
|
end
|