Skip to content

Instantly share code, notes, and snippets.

@stvkoch
Created August 21, 2009 15:45
Show Gist options
  • Save stvkoch/172120 to your computer and use it in GitHub Desktop.
Save stvkoch/172120 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
layout :current_layout
protected
def current_layout
logged_in? ? 'layout_do_usuario_logado' : 'layout_do_usuario_comum'
emd
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment