Project

General

Profile

Download (1.44 KB) Statistics
| Branch: | Tag: | Revision:
class EnvironmentsController < ApplicationController
before_filter :find_environment, :only => %w{show edit update destroy}

def index
respond_to do |format|
format.html do
@search = Environment.search(params[:search])
@environments = @search.paginate :page => params[:page]
end
format.json { render :json => Environment.all.as_json }
end
end

def show
respond_to do |format|
format.html { invalid_request }
format.json { render :json => @environment.as_json(:include => :hosts)}
end
end

def new
@environment = Environment.new
end

def create
@environment = Environment.new(params[:environment])
if @environment.save
flash[:foreman_notice] = "Successfully created environment."
redirect_to environments_path
else
render :action => 'new'
end
end

def edit
end

def update
if @environment.update_attributes(params[:environment])
flash[:foreman_notice] = "Successfully updated environment."
redirect_to environments_path
else
render :action => 'edit'
end
end

def destroy
if @environment.destroy
flash[:foreman_notice] = "Successfully destroyed '#{@environment.name}''"
else
flash[:foreman_error] = @environment.errors.full_messages.join("<br/>")
end
redirect_to environments_url
end

private
def find_environment
@environment = Environment.find_by_name(params[:id])
end

end
(8-8/24)