DEV: remove unused 'composer/parse_html' route

This commit is contained in:
Régis Hanol
2020-02-14 16:15:34 +01:00
parent b37d2f09ba
commit aad46a1aba
3 changed files with 0 additions and 40 deletions

View File

@ -1,12 +0,0 @@
# frozen_string_literal: true
class ComposerController < ApplicationController
requires_login
def parse_html
markdown_text = HtmlToMarkdown.new(params[:html]).to_markdown
render json: { markdown: markdown_text }
end
end