Revision 1, 0.5 kB
(checked in by falcon, 17 years ago)
|
Version one -> initial work from the laptop.
|
Line | |
---|
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 | |
---|
4 | class ApplicationController < ActionController::Base |
---|
5 | helper :all # include all helpers, all the time |
---|
6 | include AuthenticatedSystem |
---|
7 | include UserSystem |
---|
8 | |
---|
9 | # See ActionController::RequestForgeryProtection for details |
---|
10 | # Uncomment the :secret if you're not using the cookie session store |
---|
11 | protect_from_forgery # :secret => '4beebaba51b43774016f4abdc9f5f657' |
---|
12 | |
---|
13 | end |
---|