2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
class IssueStatusesController < ApplicationController
|
2009-12-17 21:21:02 +03:00
|
|
|
layout 'admin'
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
before_filter :require_admin
|
|
|
|
|
2009-12-11 21:48:34 +03:00
|
|
|
verify :method => :post, :only => [ :destroy, :create, :update, :move, :update_issue_done_ratio ],
|
2010-02-12 22:15:33 +03:00
|
|
|
:redirect_to => { :action => :index }
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
def index
|
2007-03-12 20:59:02 +03:00
|
|
|
@issue_status_pages, @issue_statuses = paginate :issue_statuses, :per_page => 25, :order => "position"
|
2010-02-12 22:15:33 +03:00
|
|
|
render :action => "index", :layout => false if request.xhr?
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@issue_status = IssueStatus.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@issue_status = IssueStatus.new(params[:issue_status])
|
|
|
|
if @issue_status.save
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2010-02-12 22:15:33 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-06-28 22:11:03 +04:00
|
|
|
else
|
|
|
|
render :action => 'new'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
@issue_status = IssueStatus.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@issue_status = IssueStatus.find(params[:id])
|
|
|
|
if @issue_status.update_attributes(params[:issue_status])
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2010-02-12 22:15:33 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-06-28 22:11:03 +04:00
|
|
|
else
|
|
|
|
render :action => 'edit'
|
|
|
|
end
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
def destroy
|
|
|
|
IssueStatus.find(params[:id]).destroy
|
2010-02-12 22:15:33 +03:00
|
|
|
redirect_to :action => 'index'
|
2007-03-12 20:59:02 +03:00
|
|
|
rescue
|
2010-02-12 22:15:39 +03:00
|
|
|
flash[:error] = l(:error_unable_delete_issue_status)
|
2010-02-12 22:15:33 +03:00
|
|
|
redirect_to :action => 'index'
|
2011-05-30 22:52:25 +04:00
|
|
|
end
|
|
|
|
|
2009-12-11 21:48:34 +03:00
|
|
|
def update_issue_done_ratio
|
|
|
|
if IssueStatus.update_issue_done_ratios
|
|
|
|
flash[:notice] = l(:notice_issue_done_ratios_updated)
|
|
|
|
else
|
|
|
|
flash[:error] = l(:error_issue_done_ratios_not_updated)
|
|
|
|
end
|
2010-02-12 22:15:33 +03:00
|
|
|
redirect_to :action => 'index'
|
2009-12-11 21:48:34 +03:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|