Skip to content

Instantly share code, notes, and snippets.

@matheusca
Created November 1, 2010 14:27
Show Gist options
  • Save matheusca/658249 to your computer and use it in GitHub Desktop.
Save matheusca/658249 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
protect_from_forgery
private
# Define theme of user
def define_theme
if @site.theme
@site.theme
else
"default"
end
end
end
class NewsController < ApplicationController
theme :define_theme
# .. actions bellow
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment