6 lines
135 B
Ruby
6 lines
135 B
Ruby
class DtextPreviewsController < ApplicationController
|
|
def create
|
|
render :inline => "<%= format_text(params[:body]) %>"
|
|
end
|
|
end
|