mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 12:41:25 +08:00
FIX: don't return 200s when login is required to paths
When running `ensure_login_required` it should always happen prior to `check_xhr` cause check xhr will trigger a 200 response
This commit is contained in:
@ -2,7 +2,7 @@ require_dependency 'html_to_markdown'
|
||||
|
||||
class ComposerController < ApplicationController
|
||||
|
||||
before_action :ensure_logged_in
|
||||
prepend_before_action :check_xhr, :ensure_logged_in
|
||||
|
||||
def parse_html
|
||||
markdown_text = HtmlToMarkdown.new(params[:html]).to_markdown
|
||||
|
Reference in New Issue
Block a user