Removed dead code.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9176 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
8612fa2fc1
commit
dbda62849d
|
@ -41,17 +41,6 @@ class Workflow < ActiveRecord::Base
|
|||
result
|
||||
end
|
||||
|
||||
# Find potential statuses the user could be allowed to switch issues to
|
||||
def self.available_statuses(project, user=User.current)
|
||||
Workflow.find(:all,
|
||||
:include => :new_status,
|
||||
:conditions => {:role_id => user.roles_for_project(project).collect(&:id)}).
|
||||
collect(&:new_status).
|
||||
compact.
|
||||
uniq.
|
||||
sort
|
||||
end
|
||||
|
||||
# Copies workflows from source to targets
|
||||
def self.copy(source_tracker, source_role, target_trackers, target_roles)
|
||||
unless source_tracker.is_a?(Tracker) || source_role.is_a?(Role)
|
||||
|
|
Loading…
Reference in New Issue