changelog shortlog tags changeset manifest revisions annotate raw

app/controllers/application.rb

changeset 7: ac1024130232
parent:3a81b06fdea8
author: moriq@moriq.com
date: Wed Mar 05 03:57:54 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: generate authenticated again.
mercurial import したときに db/migrate lib が消えてた。orz
1# Filters added to this controller apply to all controllers in the application.
2# Likewise, all the methods added will be available for all controllers.
3
4class ApplicationController < ActionController::Base
5 helper :all # include all helpers, all the time
6
7 # Be sure to include AuthenticationSystem in Application Controller instead
8 include AuthenticatedSystem
9
10
11 # See ActionController::RequestForgeryProtection for details
12 # Uncomment the :secret if you're not using the cookie session store
13 protect_from_forgery # :secret => '34d199dc292649987bc6a6f4e7174608'
14end