Revision 4, 0.5 kB
(checked in by falcon, 17 years ago)
|
75% complete. ajax support for engineering and galleries. galleries add/edit. artwork and engineering layouts.
|
Rev | Line | |
---|
[1] | 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 |
---|
[4] | 8 | include SidebarHelper |
---|
[1] | 9 | |
---|
| 10 | # See ActionController::RequestForgeryProtection for details |
---|
| 11 | # Uncomment the :secret if you're not using the cookie session store |
---|
| 12 | protect_from_forgery # :secret => '4beebaba51b43774016f4abdc9f5f657' |
---|
| 13 | |
---|
[4] | 14 | end |
---|