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.
90 lines
4.1 KiB
90 lines
4.1 KiB
#-- encoding: UTF-8
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# 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.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
module StandardSeeder
|
|
module BasicData
|
|
class StatusSeeder < ::BasicData::StatusSeeder
|
|
def data
|
|
color_names = [
|
|
'cyan-7', # new
|
|
'blue-2', # in specification
|
|
'blue-2', # specified
|
|
'violet-2', # confirmed
|
|
'yellow-2', # tbs
|
|
'lime-2', # scheduled
|
|
'grape-5', # in progress
|
|
'cyan-3', # in development
|
|
'green-3', # developed
|
|
'cyan-5', # in testing
|
|
'teal-6', # tested
|
|
'red-5', # test_failed
|
|
'gray-3', # closed
|
|
'orange-3', # on hold
|
|
'red-3' # rejected
|
|
]
|
|
|
|
# When selecting for an array of values, implicit order is applied
|
|
# so we need to restore values by their name.
|
|
colors_by_name = Color.where(name: color_names).index_by(&:name)
|
|
colors = color_names.collect { |name| colors_by_name[name].id }
|
|
|
|
[
|
|
{ name: I18n.t(:default_status_new), color_id: colors[0], is_closed: false, is_default: true,
|
|
position: 1 },
|
|
{ name: I18n.t(:default_status_in_specification), color_id: colors[1], is_closed: false, is_default: false,
|
|
position: 2 },
|
|
{ name: I18n.t(:default_status_specified), color_id: colors[2], is_closed: false, is_default: false,
|
|
position: 3 },
|
|
{ name: I18n.t(:default_status_confirmed), color_id: colors[3], is_closed: false, is_default: false,
|
|
position: 4 },
|
|
{ name: I18n.t(:default_status_to_be_scheduled), color_id: colors[4], is_closed: false, is_default: false,
|
|
position: 5 },
|
|
{ name: I18n.t(:default_status_scheduled), color_id: colors[5], is_closed: false, is_default: false,
|
|
position: 6 },
|
|
{ name: I18n.t(:default_status_in_progress), color_id: colors[6], is_closed: false, is_default: false,
|
|
position: 7 },
|
|
{ name: I18n.t(:default_status_developed), color_id: colors[8], is_closed: false, is_default: false,
|
|
position: 9 },
|
|
{ name: I18n.t(:default_status_in_testing), color_id: colors[9], is_closed: false, is_default: false,
|
|
position: 10 },
|
|
{ name: I18n.t(:default_status_tested), color_id: colors[10], is_closed: false, is_default: false,
|
|
position: 11 },
|
|
{ name: I18n.t(:default_status_test_failed), color_id: colors[11], is_closed: false, is_default: false,
|
|
position: 12 },
|
|
{ name: I18n.t(:default_status_closed), color_id: colors[12], is_closed: true, is_default: false,
|
|
position: 13 },
|
|
{ name: I18n.t(:default_status_on_hold), color_id: colors[13], is_closed: false, is_default: false,
|
|
position: 14 },
|
|
{ name: I18n.t(:default_status_rejected), color_id: colors[14], is_closed: true, is_default: false,
|
|
position: 15 }
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|