Sha256: b3fde35b8869f92d63e16043251457a369fd95f6e75c69f726b04d7e6beab5ab
Contents?: true
Size: 873 Bytes
Versions: 4
Compression:
Stored size: 873 Bytes
Contents
class Admin::Disguise::ThemesController < ApplicationController unloadable before_filter :get_theme def edit @current_theme, @themes = Theme.available_themes(@theme) @domain_themes = {} DomainTheme.all.each{ |d| @domain_themes[d.name] = @domain_themes[d.name].blank? ? [d] : @domain_themes[d.name] << d } if @themes.empty? respond_to do |format| format.html { render :template => 'admin/themes/no_themes' } end else respond_to do |format| format.html { render :template => 'admin/themes/edit' } end end end def update @theme.update_attributes!(params[:theme]) respond_to do |format| flash[:notice] = t('disguise.theme_updated') format.html { redirect_to edit_admin_theme_path } end end private def get_theme @theme = Theme.first || Theme.create end end
Version data entries
4 entries across 4 versions & 1 rubygems