Guest User

Untitled

a guest
Jan 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.17 KB | None | 0 0
  1. class PostController < ApplicationController
  2.     include PostsHelper
  3.  
  4.     def create
  5.         ...
  6.         @post.body = cache_markdown(@post.body)
  7.         if @post.save
  8.             ...
  9.         end
  10.     end
  11. end
Add Comment
Please, Sign In to add comment