2011-12-19 15:30:14 +00:00
|
|
|
class IssuesController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
|
|
|
before_filter :find_project
|
2011-12-20 16:57:34 +00:00
|
|
|
before_filter :find_issue, :only => [:edit, :update, :destroy]
|
2011-12-19 15:30:14 +00:00
|
|
|
|
|
|
|
load_and_authorize_resource
|
|
|
|
autocomplete :user, :uname
|
|
|
|
|
2011-12-20 16:57:34 +00:00
|
|
|
def show
|
|
|
|
@issue = @project.issues.where(:serial_id => params[:serial_id])[0]
|
|
|
|
end
|
|
|
|
|
2011-12-19 15:30:14 +00:00
|
|
|
def index
|
|
|
|
@issues = @project.issues.paginate :per_page => 10, :page => params[:page]
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@user_id = params[:user_id]
|
|
|
|
@user_uname = params[:user_uname]
|
|
|
|
|
|
|
|
@issue = Issue.new(params[:issue])
|
|
|
|
@issue.user_id = @user_id
|
|
|
|
@issue.project_id = @project.id
|
|
|
|
if @issue.save!
|
|
|
|
flash[:notice] = I18n.t("flash.issue.saved")
|
|
|
|
redirect_to project_issues_path(@project)
|
|
|
|
else
|
|
|
|
flash[:error] = I18n.t("flash.issue.saved_error")
|
|
|
|
render :action => :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@user_id = params[:user_id]
|
|
|
|
@user_uname = params[:user_uname]
|
|
|
|
|
|
|
|
if @issue.update_attributes( params[:issue].merge({:user_id => @user_id}) )
|
|
|
|
flash[:notice] = I18n.t("flash.issue.saved")
|
|
|
|
redirect_to @issue
|
|
|
|
else
|
|
|
|
flash[:error] = I18n.t("flash.issue.saved_error")
|
|
|
|
render :action => :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
flash[:notice] = t("flash.issue.destroyed")
|
|
|
|
redirect_to root_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_project
|
|
|
|
@project = Project.find(params[:project_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_issue
|
|
|
|
@issue = Issue.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|