Files
forum/app/controllers/application_controller.rb
Ricky Barrette 7da52114ca Added post anchors and show post.
when a new post is created, the page is now scrolled to is via its
anchor

created a show post route, and view.

added a post number to post view, with link.

need to change displayed post number from post id, to reply #
2013-01-25 03:33:48 -05:00

11 lines
250 B
Ruby
Executable File

class ApplicationController < ActionController::Base
helper :all
protect_from_forgery
rescue_from CanCan::AccessDenied do |exception|
redirect_to root_url, :alert => "You don't have access to that feature. Please try again."
end
end