search for: joincontroller

Displaying 1 result from an estimated 1 matches for "joincontroller".

Did you mean: jobscontroller
2006 Jul 21
7
Layouts
I am trying to set the layout for certain actions within a controller, but not others, but doing class JoinController < ApplicationController layout ''form'' def index end def add end end sets layouts for all actions, and doing class JoinController < ApplicationController def index layout ''form'' end def add end end returns an error. Is there any wa...