Guest User

Untitled

a guest
Apr 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class BlogsController < ApplicationController
  2.  
  3. def show
  4. @blog = Blog.find(params[:id])
  5. rescue ActiveRecord::RecordNotFound
  6. flash[:notice] = "The blog you were looking for could not be found"
  7. redirect_to root_path
  8. # or blogs_path
  9. end
Add Comment
Please, Sign In to add comment