kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.0 KiB
61 lines
2.0 KiB
13 years ago
|
#-- encoding: UTF-8
|
||
14 years ago
|
#-- copyright
|
||
12 years ago
|
# OpenProject is a project management system.
|
||
10 years ago
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||
14 years ago
|
#
|
||
14 years ago
|
# This program is free software; you can redistribute it and/or
|
||
12 years ago
|
# modify it under the terms of the GNU General Public License version 3.
|
||
14 years ago
|
#
|
||
11 years ago
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
||
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
||
|
#
|
||
|
# 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.
|
||
|
#
|
||
14 years ago
|
# See doc/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
15 years ago
|
class Project < ActiveRecord::Base
|
||
10 years ago
|
generator_for :name, method: :next_name
|
||
|
generator_for :identifier, method: :next_identifier_from_object_daddy
|
||
|
generator_for :enabled_modules, method: :all_modules
|
||
|
generator_for :types, method: :next_type
|
||
14 years ago
|
|
||
15 years ago
|
def self.next_name
|
||
|
@last_name ||= 'Project 0'
|
||
|
@last_name.succ!
|
||
|
@last_name
|
||
|
end
|
||
|
|
||
|
# Project#next_identifier is defined on Redmine
|
||
|
def self.next_identifier_from_object_daddy
|
||
15 years ago
|
@last_identifier ||= 'project-0000'
|
||
15 years ago
|
@last_identifier.succ!
|
||
|
@last_identifier
|
||
|
end
|
||
15 years ago
|
|
||
|
def self.all_modules
|
||
14 years ago
|
[].tap do |modules|
|
||
15 years ago
|
Redmine::AccessControl.available_project_modules.each do |name|
|
||
10 years ago
|
modules << EnabledModule.new(name: name.to_s)
|
||
15 years ago
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
11 years ago
|
def self.next_type
|
||
|
[Type.generate!]
|
||
15 years ago
|
end
|
||
15 years ago
|
end
|