Class: IssueCategory

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/issue_category.rb

Overview

redMine - project management software Copyright © 2006 Jean-Philippe Lang

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.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Instance Method Summary collapse

Instance Method Details

#<=>(category) ⇒ Object



38
39
40
# File 'app/models/issue_category.rb', line 38

def <=>(category)
  name <=> category.name
end

#destroy(reassign_to = nil) ⇒ Object

Destroy the category If a category is specified, issues are reassigned to this category



31
32
33
34
35
36
# File 'app/models/issue_category.rb', line 31

def destroy(reassign_to = nil)
  if reassign_to && reassign_to.is_a?(IssueCategory) && reassign_to.project == self.project
    Issue.update_all("category_id = #{reassign_to.id}", "category_id = #{id}")
  end
  destroy_without_reassign
end

#destroy_without_reassignObject



27
# File 'app/models/issue_category.rb', line 27

alias :destroy_without_reassign :destroy

#to_sObject



42
# File 'app/models/issue_category.rb', line 42

def to_s; name end