Class: IssueCategory
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- IssueCategory
- Defined in:
- app/models/issue_category.rb
Overview
redMine - project management software Copyright (C) 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
- - (Object) <=>(category)
-
- (Object) destroy(reassign_to = nil)
(also: #destroy_without_reassign)
Destroy the category If a category is specified, issues are reassigned to this category.
- - (Object) to_s
Methods inherited from ActiveRecord::Base
Instance Method Details
- (Object) <=>(category)
38 39 40 |
# File 'app/models/issue_category.rb', line 38 def <=>(category) name <=> category.name end |
- (Object) destroy(reassign_to = nil) Also known as: destroy_without_reassign
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 |
- (Object) to_s
42 |
# File 'app/models/issue_category.rb', line 42 def to_s; name end |