features_controller.rb 413 Bytes
class FeaturesController < AdminController
  protect 'edit_environment_features', :environment
  
  def index
    @features = Environment.available_features
  end

  post_only :update
  def update
    if @environment.update_attributes(params[:environment])
      flash[:notice] = _('Features updated successfully.')
      redirect_to :action => 'index'
    else
      render :action => 'index'
    end
  end

end