Guest User

Untitled

a guest
May 28th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class FrontsController < ApplicationController
  2.  
  3. def index
  4.  
  5. end
  6.  
  7. def show
  8. #@user_text = UserText.new
  9. end
  10.  
  11. def create
  12. @html_text = BlueCloth::new(params[:user_text][:text]).to_html
  13. # @text = UserText.new
  14. @text = params[:user_text][:text]
  15. render :action => "show"
  16. end
  17.  
  18. end
Add Comment
Please, Sign In to add comment