Class: IssueCategory

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

Overview

Redmine - project management software Copyright © 2006-2022 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

Methods included from Redmine::SafeAttributes

#delete_unsafe_attributes, included, #safe_attribute?, #safe_attribute_names, #safe_attributes=

Instance Method Details

#<=>(category) ⇒ Object



45
46
47
# File 'app/models/issue_category.rb', line 45

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



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

def destroy(reassign_to = nil)
  if reassign_to && reassign_to.is_a?(IssueCategory) && reassign_to.project == self.project
    Issue.where({:category_id => id}).update_all({:category_id => reassign_to.id})
  end
  destroy_without_reassign
end

#destroy_without_reassignObject



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

alias :destroy_without_reassign :destroy

#to_sObject



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

def to_s; name end