trabajo-afectivo/db/seeds.rb

1926 lines
47 KiB
Ruby
Raw Normal View History

2012-05-30 21:06:37 +00:00
# encoding: utf-8
2012-04-10 13:31:21 +00:00
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
# Mayor.create(:name => 'Emanuel', :city => cities.first)
2014-11-06 22:56:01 +00:00
Setting.create_if_not_exists(
title: 'System Init Done',
name: 'system_init_done',
area: 'Core',
description: 'Defines if application is in init mode.',
options: {},
state: false,
preferences: { online_service_disable: true },
frontend: true
2014-11-06 20:45:06 +00:00
)
Setting.create_if_not_exists(
title: 'Developer System',
name: 'developer_mode',
area: 'Core::Develop',
description: 'Defines if application is in developer mode (useful for developer, all users have the same password, password reset will work without email delivery).',
options: {},
state: false,
preferences: { online_service_disable: true },
frontend: true
)
Setting.create_if_not_exists(
title: 'Online Service',
name: 'system_online_service',
area: 'Core',
description: 'Defines if application is used as online service.',
options: {},
state: false,
preferences: { online_service_disable: true },
frontend: true
)
Setting.create_if_not_exists(
title: 'Product Name',
name: 'product_name',
2015-07-12 01:32:40 +00:00
area: 'System::Branding',
description: 'Defines the name of the application, shown in the web interface, tabs and title bar of the web browser.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
name: 'product_name',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
2015-07-12 05:32:50 +00:00
preferences: { render: true, session_check: true, prio: 1 },
state: 'Zammad Helpdesk',
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
2015-07-12 05:32:50 +00:00
title: 'Logo',
name: 'product_logo',
2015-07-12 01:32:40 +00:00
area: 'System::Branding',
2015-07-12 05:32:50 +00:00
description: 'Defines the logo of the application, shown in the web interface.',
options: {
form: [
{
display: '',
null: false,
2015-07-12 05:32:50 +00:00
name: 'product_logo',
tag: 'input',
},
],
},
2015-07-12 05:32:50 +00:00
preferences: { prio: 3 },
state: 'logo.svg',
frontend: true
)
Setting.create_if_not_exists(
2015-07-12 05:32:50 +00:00
title: 'Organization',
name: 'organization',
2015-07-12 01:32:40 +00:00
area: 'System::Branding',
2015-07-16 10:14:31 +00:00
description: 'Will be shown in the app and is included in email footers.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
2015-07-12 05:32:50 +00:00
name: 'organization',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
2015-07-12 05:32:50 +00:00
state: '',
preferences: { prio: 2 },
frontend: true
2012-04-10 14:06:46 +00:00
)
options = {}
(10..99).each {|item|
options[item] = item
}
system_id = rand(10..99)
Setting.create_if_not_exists(
title: 'SystemID',
name: 'system_id',
area: 'System::Base',
description: 'Defines the system identifier. Every ticket number contains this ID. This ensures that only tickets which belong to your system will be processed as follow-ups (useful when communicating between two instances of Zammad).',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'system_id',
tag: 'select',
options: options,
2012-04-10 14:06:46 +00:00
},
],
},
state: system_id,
preferences: { online_service_disable: true },
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Fully Qualified Domain Name',
name: 'fqdn',
area: 'System::Base',
description: 'Defines the fully qualified domain name of the system. This setting is used as a variable, #{setting.fqdn} which is found in all forms of messaging used by the application, to build links to the tickets within your system.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
name: 'fqdn',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
state: 'zammad.example.com',
preferences: { online_service_disable: true },
frontend: true
2012-04-10 14:06:46 +00:00
)
2015-05-07 05:18:26 +00:00
Setting.create_if_not_exists(
title: 'websocket port',
name: 'websocket_port',
area: 'System::WebSocket',
description: 'Defines the port of the websocket server.',
options: {
form: [
{
display: '',
null: false,
name: 'websocket_port',
tag: 'input',
},
],
},
state: '6042',
preferences: { online_service_disable: true },
2015-05-07 05:18:26 +00:00
frontend: true
)
Setting.create_if_not_exists(
title: 'http type',
name: 'http_type',
area: 'System::Base',
description: 'Defines the type of protocol, used by the web server, to serve the application. If https protocol will be used instead of plain http, it must be specified in here. Since this has no affect on the web server\'s settings or behavior, it will not change the method of access to the application and, if it is wrong, it will not prevent you from logging into the application. This setting is used as a variable, #{setting.http_type} which is found in all forms of messaging used by the application, to build links to the tickets within your system.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'http_type',
tag: 'select',
options: {
2012-04-10 14:06:46 +00:00
'https' => 'https',
'http' => 'http',
},
},
],
},
state: 'http',
preferences: { online_service_disable: true },
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Storage Mechanism',
name: 'storage',
area: 'System::Storage',
description: '"Database" stores all attachments in the database (not recommended for storing large amounts of data). "Filesystem" stores the data on the filesystem. You can switch between the modules even on a system that is already in production without any loss of data.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'storage',
tag: 'select',
options: {
2012-04-10 14:06:46 +00:00
'DB' => 'Database',
'FS' => 'Filesystem',
},
},
],
},
state: 'DB',
preferences: { online_service_disable: true },
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Image Service',
name: 'image_backend',
area: 'System::Services',
description: 'Defines the backend for user and organization image lookups.',
options: {
form: [
{
display: '',
null: true,
name: 'image_backend',
tag: 'select',
options: {
'' => '-',
'Service::Image::Zammad' => 'Zammad Image Service',
},
},
],
},
state: 'Service::Image::Zammad',
preferences: { prio: 1 },
frontend: false
)
Setting.create_if_not_exists(
title: 'Geo IP Service',
name: 'geo_ip_backend',
area: 'System::Services',
description: 'Defines the backend for geo IP lookups. Show also location of an IP address if an IP address is shown.',
options: {
form: [
{
display: '',
null: true,
name: 'geo_ip_backend',
tag: 'select',
options: {
'' => '-',
'Service::GeoIp::Zammad' => 'Zammad GeoIP Service',
},
},
],
},
state: 'Service::GeoIp::Zammad',
preferences: { prio: 2 },
frontend: false
)
Setting.create_if_not_exists(
title: 'Geo Location Service',
name: 'geo_location_backend',
area: 'System::Services',
description: 'Defines the backend for geo location lookups to store geo locations for addresses.',
options: {
form: [
{
display: '',
null: true,
name: 'geo_location_backend',
tag: 'select',
options: {
'' => '-',
'Service::GeoLocation::Gmaps' => 'Google Maps',
},
},
],
},
state: 'Service::GeoLocation::Gmaps',
preferences: { prio: 3 },
frontend: false
)
2012-04-10 14:06:46 +00:00
Setting.create_if_not_exists(
title: 'Send client stats',
name: 'ui_send_client_stats',
area: 'System::UI',
2015-07-16 10:14:31 +00:00
description: 'Send client stats/error message to central server to improve the usability.',
options: {
form: [
{
display: '',
null: true,
name: 'ui_send_client_stats',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: true,
2015-07-16 10:14:31 +00:00
preferences: { prio: 1 },
frontend: true
)
Setting.create_if_not_exists(
title: 'Client storage',
name: 'ui_client_storage',
area: 'System::UI',
description: 'Use client storage to cache data to perform speed of application.',
options: {
form: [
{
display: '',
null: true,
name: 'ui_client_storage',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: false,
2015-07-16 10:14:31 +00:00
preferences: { prio: 2 },
frontend: true
)
Setting.create_if_not_exists(
title: 'New User Accounts',
name: 'user_create_account',
area: 'Security::Base',
description: 'Enables users to create their own account via web interface.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'user_create_account',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: true,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Lost Password',
name: 'user_lost_password',
area: 'Security::Base',
2015-05-02 08:54:18 +00:00
description: 'Activates lost password feature for users.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'user_lost_password',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: true,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Authentication via OTRS',
name: 'auth_otrs',
area: 'Security::Authentication',
description: 'Enables user authentication via OTRS.',
state: {
adapter: 'Auth::Otrs',
required_group_ro: 'stats',
group_rw_role_map: {
'admin' => 'Admin',
'stats' => 'Report',
},
group_ro_role_map: {
'stats' => 'Report',
},
always_role: {
'Agent' => true,
},
2012-04-10 14:06:46 +00:00
},
frontend: false
)
Setting.create_if_not_exists(
title: 'Authentication via LDAP',
name: 'auth_ldap',
area: 'Security::Authentication',
description: 'Enables user authentication via LDAP.',
state: {
adapter: 'Auth::Ldap',
host: 'localhost',
port: 389,
bind_dn: 'cn=Manager,dc=example,dc=org',
bind_pw: 'example',
uid: 'mail',
base: 'dc=example,dc=org',
always_filter: '',
always_roles: %w(Admin Agent),
always_groups: ['Users'],
sync_params: {
firstname: 'sn',
lastname: 'givenName',
email: 'mail',
login: 'mail',
},
},
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Authentication via Twitter',
name: 'auth_twitter',
area: 'Security::ThirdPartyAuthentication',
description: "@T('Enables user authentication via twitter. Register your app first at [Twitter Developer Site](https://dev.twitter.com/apps)')",
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'auth_twitter',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: false,
frontend: true
)
Setting.create_if_not_exists(
title: 'Twitter App Credentials',
name: 'auth_twitter_credentials',
area: 'Security::ThirdPartyAuthentication',
description: 'App credentials for Twitter.',
options: {
form: [
{
display: 'Twitter Key',
null: true,
name: 'key',
tag: 'input',
},
{
display: 'Twitter Secret',
null: true,
name: 'secret',
tag: 'input',
},
],
},
state: {},
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Authentication via Facebook',
name: 'auth_facebook',
area: 'Security::ThirdPartyAuthentication',
description: "@T('Enables user authentication via Facebook. Register your app first at [Facebook Developer Site](https://developers.facebook.com/apps/)')",
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'auth_facebook',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: false,
frontend: true
)
Setting.create_if_not_exists(
title: 'Facebook App Credentials',
name: 'auth_facebook_credentials',
area: 'Security::ThirdPartyAuthentication',
description: 'App credentials for Facebook.',
options: {
form: [
{
display: 'App ID',
null: true,
name: 'app_id',
tag: 'input',
},
{
display: 'App Secret',
null: true,
name: 'app_secret',
tag: 'input',
},
],
},
state: {},
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Authentication via Google',
name: 'auth_google_oauth2',
area: 'Security::ThirdPartyAuthentication',
description: 'Enables user authentication via Google.',
options: {
form: [
{
display: '',
null: true,
name: 'auth_google_oauth2',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: false,
frontend: true
)
Setting.create_if_not_exists(
title: 'Google App Credentials',
name: 'auth_google_oauth2_credentials',
area: 'Security::ThirdPartyAuthentication',
description: 'Enables user authentication via Google.',
options: {
form: [
{
display: 'Client ID',
null: true,
name: 'client_id',
tag: 'input',
},
{
display: 'Client Secret',
null: true,
name: 'client_secret',
tag: 'input',
},
],
},
state: {},
frontend: false
)
Setting.create_if_not_exists(
title: 'Authentication via LinkedIn',
name: 'auth_linkedin',
area: 'Security::ThirdPartyAuthentication',
description: 'Enables user authentication via LinkedIn.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'auth_linkedin',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: false,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'LinkedIn App Credentials',
name: 'auth_linkedin_credentials',
area: 'Security::ThirdPartyAuthentication',
description: 'Enables user authentication via LinkedIn.',
options: {
form: [
{
display: 'App ID',
null: true,
name: 'app_id',
tag: 'input',
},
{
display: 'App Secret',
null: true,
name: 'app_secret',
tag: 'input',
},
],
},
state: {},
frontend: false
)
Setting.create_if_not_exists(
title: 'Minimal size',
name: 'password_min_size',
area: 'Security::Password',
description: 'Password need to have at least minimal size of characters.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'password_min_size',
tag: 'select',
options: {
4 => ' 4',
5 => ' 5',
6 => ' 6',
7 => ' 7',
8 => ' 8',
9 => ' 9',
10 => '10',
11 => '11',
12 => '12',
13 => '13',
14 => '14',
15 => '15',
16 => '16',
17 => '17',
18 => '18',
19 => '19',
20 => '20',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: 6,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: '2 lower and 2 upper characters',
name: 'password_min_2_lower_2_upper_characters',
area: 'Security::Password',
description: 'Password need to contain 2 lower and 2 upper characters.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'password_min_2_lower_2_upper_characters',
tag: 'select',
options: {
2012-04-10 14:06:46 +00:00
1 => 'yes',
0 => 'no',
},
},
],
},
state: 0,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Digit required',
name: 'password_need_digit',
area: 'Security::Password',
description: 'Password need to have at least one digit.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: 'Needed',
null: true,
name: 'password_need_digit',
tag: 'select',
options: {
2012-04-10 14:06:46 +00:00
1 => 'yes',
0 => 'no',
},
},
],
},
state: 1,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Maximal failed logins',
name: 'password_max_login_failed',
area: 'Security::Password',
description: 'Maximal failed logins after account is inactive.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'password_max_login_failed',
tag: 'select',
options: {
4 => ' 4',
5 => ' 5',
6 => ' 6',
7 => ' 7',
8 => ' 8',
9 => ' 9',
10 => '10',
11 => '11',
13 => '13',
14 => '14',
15 => '15',
16 => '16',
17 => '17',
18 => '18',
19 => '19',
20 => '20',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: 10,
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Hook',
name: 'ticket_hook',
area: 'Ticket::Base',
description: 'The identifier for a ticket, e.g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
name: 'ticket_hook',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
2015-07-12 05:32:50 +00:00
preferences: { render: true },
state: 'Ticket#',
frontend: true
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Hook Divider',
name: 'ticket_hook_divider',
area: 'Ticket::Base::Shadow',
description: 'The divider between TicketHook and ticket number. E.g \': \'.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'ticket_hook_divider',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
state: '',
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Hook Position',
name: 'ticket_hook_position',
area: 'Ticket::Base',
description: "@T('The format of the subject.')
* @T('**Right** means **Some Subject [Ticket#12345]**')
* @T('**Left** means **[Ticket#12345] Some Subject**')
* @T('**None** means **Some Subject** (without ticket number). In the last case you should enable *postmaster_follow_up_search_in* to recognize followups based on email headers and/or body.')",
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'ticket_hook_position',
tag: 'select',
options: {
2012-04-10 14:06:46 +00:00
'left' => 'Left',
'right' => 'Right',
'none' => 'None',
},
},
],
},
state: 'right',
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Subject Size',
name: 'ticket_subject_size',
area: 'Ticket::Base',
description: 'Max size of the subjects in an email reply.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
name: 'ticket_subject_size',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
state: '110',
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Subject Reply',
name: 'ticket_subject_re',
area: 'Ticket::Base',
description: 'The text at the beginning of the subject in an email reply, e.g. RE, AW, or AS.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'ticket_subject_re',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
state: 'RE',
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Number Format',
name: 'ticket_number',
area: 'Ticket::Number',
description: "@T('Selects the ticket number generator module.')
* @T('**Increment** increments the ticket number, the SystemID and the counter are used with SystemID.Counter format (e.g. 1010138, 1010139).')
* @T('With **Date** the ticket numbers will be generated by the current date, the SystemID and the counter. The format looks like Year.Month.Day.SystemID.counter (e.g. 201206231010138, 201206231010139).')
@T('With param 'Checksum => true' the counter will be appended as checksum to the string. The format looks like SystemID.Counter.CheckSum (e. g. 10101384, 10101392) or Year.Month.Day.SystemID.Counter.CheckSum (e.g. 2012070110101520, 2012070110101535).')",
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: true,
name: 'ticket_number',
tag: 'select',
options: {
'Ticket::Number::Increment' => 'Increment (SystemID.Counter)',
'Ticket::Number::Date' => 'Date (Year.Month.Day.SystemID.Counter)',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: 'Ticket::Number::Increment',
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Number Increment',
name: 'ticket_number_increment',
area: 'Ticket::Number',
description: '-',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: 'Checksum',
null: true,
name: 'checksum',
tag: 'boolean',
options: {
2012-04-10 14:06:46 +00:00
true => 'yes',
false => 'no',
},
},
{
display: 'Min. size of number',
null: true,
name: 'min_size',
tag: 'select',
options: {
1 => ' 1',
2 => ' 2',
3 => ' 3',
4 => ' 4',
5 => ' 5',
6 => ' 6',
7 => ' 7',
8 => ' 8',
9 => ' 9',
10 => '10',
11 => '11',
12 => '12',
13 => '13',
14 => '14',
15 => '15',
16 => '16',
17 => '17',
18 => '18',
19 => '19',
20 => '20',
2012-04-10 14:06:46 +00:00
},
},
],
},
state: {
checksum: false,
min_size: 5,
2012-04-10 14:06:46 +00:00
},
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Ticket Number Increment Date',
name: 'ticket_number_date',
area: 'Ticket::Number',
description: '-',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: 'Checksum',
null: true,
name: 'checksum',
tag: 'boolean',
options: {
2012-04-10 14:06:46 +00:00
true => 'yes',
false => 'no',
},
},
],
},
state: {
checksum: false,
2012-04-10 14:06:46 +00:00
},
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Enable Ticket creation',
name: 'customer_ticket_create',
area: 'CustomerWeb::Base',
description: 'Defines if a customer can create tickets via the web interface.',
options: {
form: [
{
display: '',
null: true,
name: 'customer_ticket_create',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: true,
frontend: true
)
Setting.create_if_not_exists(
title: 'Group selection for Ticket creation',
name: 'customer_ticket_create_group_ids',
area: 'CustomerWeb::Base',
description: 'Defines groups where customer can create tickets via web interface. "-" means all groups are available.',
options: {
form: [
{
display: '',
null: true,
name: 'group_ids',
tag: 'select',
multiple: true,
nulloption: true,
relation: 'Group',
},
],
},
state: '',
frontend: true
)
Setting.create_if_not_exists(
title: 'Enable Ticket View/Update',
name: 'customer_ticket_view',
area: 'CustomerWeb::Base',
description: 'Defines if a customer view and update his own tickets.',
options: {
form: [
{
display: '',
null: true,
name: 'customer_ticket_view',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: true,
frontend: true
)
2015-08-10 00:10:41 +00:00
Setting.create_if_not_exists(
title: 'Enable Ticket creation',
name: 'form_ticket_create',
area: 'Form::Base',
description: 'Defines if ticket can get created via web form.',
options: {
form: [
{
display: '',
null: true,
name: 'form_ticket_create',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: false,
frontend: false,
)
Setting.create_if_not_exists(
title: 'Sender Format',
name: 'ticket_define_email_from',
area: 'Email::Base',
description: 'Defines how the From field from the emails (sent from answers and email tickets) should look like.',
options: {
form: [
2012-12-01 13:13:00 +00:00
{
display: '',
null: true,
name: 'ticket_define_email_from',
tag: 'select',
options: {
SystemAddressName: 'System Address Display Name',
AgentNameSystemAddressName: 'Agent Name + FromSeparator + System Address Display Name',
2012-12-01 13:13:00 +00:00
},
},
],
},
state: 'AgentNameSystemAddressName',
frontend: false
2012-12-01 13:13:00 +00:00
)
Setting.create_if_not_exists(
title: 'Sender Format Seperator',
name: 'ticket_define_email_from_seperator',
area: 'Email::Base',
description: 'Defines the separator between the agents real name and the given group email address.',
options: {
form: [
2012-12-01 13:13:00 +00:00
{
display: '',
null: false,
name: 'ticket_define_email_from_seperator',
tag: 'input',
2012-12-01 13:13:00 +00:00
},
],
},
state: 'via',
frontend: false
2012-12-01 13:13:00 +00:00
)
Setting.create_if_not_exists(
title: 'Max. Email Size',
name: 'postmaster_max_size',
area: 'Email::Base',
description: 'Maximal size in MB of emails.',
options: {
form: [
{
display: '',
null: true,
name: 'postmaster_max_size',
tag: 'select',
options: {
1 => ' 1',
2 => ' 2',
3 => ' 3',
4 => ' 4',
5 => ' 5',
6 => ' 6',
7 => ' 7',
8 => ' 8',
9 => ' 9',
10 => ' 10',
15 => ' 15',
20 => ' 20',
25 => ' 25',
30 => ' 30',
35 => ' 35',
40 => ' 40',
45 => ' 45',
50 => ' 50',
60 => ' 60',
70 => ' 70',
80 => ' 80',
90 => ' 90',
100 => '100',
125 => '125',
150 => '150',
},
},
],
},
state: 10,
preferences: { online_service_disable: true },
frontend: false
)
Setting.create_if_not_exists(
title: 'Additional follow up detection',
name: 'postmaster_follow_up_search_in',
area: 'Email::Base',
description: 'In default the follow up check is done via the subject of an email. With this setting you can add more fields where the follow up ckeck is executed.',
options: {
form: [
{
display: '',
null: true,
name: 'postmaster_follow_up_search_in',
tag: 'checkbox',
options: {
'references' => 'References - Search for follow up also in In-Reply-To or References headers.',
'body' => 'Body - Search for follow up also in mail body.',
'attachment' => 'Attachment - Search for follow up also in attachments.',
},
},
],
},
state: [],
frontend: false
)
Setting.create_if_not_exists(
title: 'Notification Sender',
name: 'notification_sender',
area: 'Email::Base',
description: 'Defines the sender of email notifications.',
options: {
form: [
2012-04-10 14:06:46 +00:00
{
display: '',
null: false,
name: 'notification_sender',
tag: 'input',
2012-04-10 14:06:46 +00:00
},
],
},
state: 'Notification Master <noreply@#{config.fqdn}>',
preferences: { online_service_disable: true },
frontend: false
2012-04-10 14:06:46 +00:00
)
Setting.create_if_not_exists(
title: 'Block Notifications',
name: 'send_no_auto_response_reg_exp',
area: 'Email::Base',
description: 'If this regex matches, no notification will be send by the sender.',
options: {
form: [
{
display: '',
null: false,
name: 'send_no_auto_response_reg_exp',
tag: 'input',
},
],
},
state: '(MAILER-DAEMON|postmaster|abuse)@.+?\..+?',
preferences: { online_service_disable: true },
frontend: false
)
Setting.create_if_not_exists(
title: 'Enable Chat',
name: 'chat',
area: 'Chat::Base',
description: 'Enable/Disable online chat.',
options: {
form: [
{
display: '',
null: true,
name: 'chat',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
2015-07-12 05:32:50 +00:00
preferences: { render: true },
state: false,
frontend: true
)
Setting.create_if_not_exists(
title: 'Define searchable models.',
name: 'models_searchable',
area: 'Models::Base',
description: 'Define the models which can be searched for.',
options: {},
state: [],
frontend: false,
)
Setting.create_if_not_exists(
title: 'Default Screen',
name: 'default_controller',
area: 'Core',
description: 'Defines the default controller.',
options: {},
state: '#dashboard',
frontend: true
)
2015-07-01 01:08:01 +00:00
Setting.create_if_not_exists(
title: 'Elasticsearch Endpoint URL',
name: 'es_url',
area: 'SearchIndex::Elasticsearch',
description: 'Define endpoint of Elastic Search.',
state: '',
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Elasticsearch Endpoint User',
name: 'es_user',
area: 'SearchIndex::Elasticsearch',
description: 'Define http basic auth user of Elasticsearch.',
state: '',
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Elastic Search Endpoint Password',
name: 'es_password',
area: 'SearchIndex::Elasticsearch',
description: 'Define http basic auth password of Elasticsearch.',
state: '',
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Elastic Search Endpoint Index',
name: 'es_index',
area: 'SearchIndex::Elasticsearch',
description: 'Define Elasticsearch index name.',
state: 'zammad',
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Elastic Search Attachment Extentions',
name: 'es_attachment_ignore',
area: 'SearchIndex::Elasticsearch',
description: 'Define attachment extentions which are ignored for Elasticsearch.',
state: [ '.png', '.jpg', '.jpeg', '.mpeg', '.mpg', '.mov', '.bin', '.exe', '.box', '.mbox' ],
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Elastic Search Attachment Size',
name: 'es_attachment_max_size_in_mb',
area: 'SearchIndex::Elasticsearch',
description: 'Define max. attachment size for Elasticsearch.',
state: 50,
preferences: { online_service_disable: true },
2015-07-01 01:08:01 +00:00
frontend: false
)
Setting.create_if_not_exists(
title: 'Import Mode',
name: 'import_mode',
area: 'Import::Base',
description: 'Set system in import mode (disable some triggers).',
options: {
form: [
{
display: '',
null: true,
name: 'import_mode',
tag: 'boolean',
options: {
true => 'yes',
false => 'no',
},
},
],
},
state: false,
frontend: true
2014-10-26 12:13:44 +00:00
)
Setting.create_if_not_exists(
title: 'Import Backend',
name: 'import_backend',
area: 'Import::Base::Internal',
description: 'Set backend which is used for import.',
options: {},
state: '',
frontend: true
)
2013-03-19 13:58:32 +00:00
Setting.create_if_not_exists(
title: 'Ignore Escalation/SLA Information',
name: 'import_ignore_sla',
area: 'Import::Base',
description: 'Ignore Escalation/SLA Information form import system.',
options: {
form: [
2013-03-19 13:58:32 +00:00
{
display: '',
null: true,
name: 'import_ignore_sla',
tag: 'boolean',
options: {
2013-03-19 13:58:32 +00:00
true => 'yes',
false => 'no',
},
},
],
},
state: false,
frontend: true
2013-03-19 13:58:32 +00:00
)
2013-01-07 09:30:07 +00:00
Setting.create_if_not_exists(
title: 'Import Endpoint',
name: 'import_otrs_endpoint',
area: 'Import::OTRS',
description: 'Defines OTRS endpoint to import users, ticket, states and articles.',
options: {
form: [
2013-01-07 09:30:07 +00:00
{
display: '',
null: false,
name: 'import_otrs_endpoint',
tag: 'input',
2013-01-07 09:30:07 +00:00
},
],
},
state: 'http://otrs_host/otrs',
frontend: false
2013-01-07 09:30:07 +00:00
)
Setting.create_if_not_exists(
title: 'Import Key',
name: 'import_otrs_endpoint_key',
area: 'Import::OTRS',
description: 'Defines OTRS endpoint auth key.',
options: {
form: [
2013-01-07 09:30:07 +00:00
{
display: '',
null: false,
name: 'import_otrs_endpoint_key',
tag: 'input',
2013-01-07 09:30:07 +00:00
},
],
},
state: '',
frontend: false
2013-01-07 09:30:07 +00:00
)
2013-04-15 21:30:42 +00:00
Setting.create_if_not_exists(
title: 'Import User for http basic authentiation',
name: 'import_otrs_user',
area: 'Import::OTRS',
description: 'Defines http basic authentiation user (only if OTRS is protected via http basic auth).',
options: {
form: [
2013-04-15 21:30:42 +00:00
{
display: '',
null: true,
name: 'import_otrs_user',
tag: 'input',
2013-04-15 21:30:42 +00:00
},
],
},
state: '',
frontend: false
2013-04-15 21:30:42 +00:00
)
Setting.create_if_not_exists(
title: 'Import Password for http basic authentiation',
name: 'import_otrs_password',
area: 'Import::OTRS',
description: 'Defines http basic authentiation password (only if OTRS is protected via http basic auth).',
options: {
form: [
2013-04-15 21:30:42 +00:00
{
display: '',
null: true,
name: 'import_otrs_password',
tag: 'input',
2013-04-15 21:30:42 +00:00
},
],
},
state: '',
frontend: false
2013-04-15 21:30:42 +00:00
)
Setting.create_if_not_exists(
title: 'Default calendar Tickets subscriptions',
name: 'defaults_calendar_subscriptions_tickets',
area: 'Defaults::CalendarSubscriptions',
description: 'Defines the default calendar Tickets subscription settings.',
options: {},
state: {
escalation: {
own: true,
not_assigned: false,
},
new_open: {
own: true,
not_assigned: false,
},
pending: {
own: true,
not_assigned: false,
}
},
frontend: true
)
signature = Signature.create_if_not_exists(
id: 1,
name: 'default',
body: '
2012-11-22 14:40:51 +00:00
#{user.firstname} #{user.lastname}
--
Super Support - Waterford Business Park
5201 Blue Lagoon Drive - 8th Floor & 9th Floor - Miami, 33126 USA
Email: hot@example.com - Web: http://www.example.com/
--',
updated_by_id: 1,
created_by_id: 1
2012-11-22 14:40:51 +00:00
)
Role.create_if_not_exists(
id: 1,
name: 'Admin',
note: 'To configure your system.',
updated_by_id: 1,
created_by_id: 1
2012-04-10 14:06:46 +00:00
)
Role.create_if_not_exists(
id: 2,
name: 'Agent',
note: 'To work on Tickets.',
updated_by_id: 1,
created_by_id: 1
2012-04-10 14:06:46 +00:00
)
Role.create_if_not_exists(
id: 3,
name: 'Customer',
note: 'People who create Tickets ask for help.',
updated_by_id: 1,
created_by_id: 1
2012-04-10 14:06:46 +00:00
)
Group.create_if_not_exists(
id: 1,
name: 'Users',
signature_id: signature.id,
note: 'Standard Group/Pool for Tickets.',
updated_by_id: 1,
created_by_id: 1
2012-04-10 14:06:46 +00:00
)
user = User.create_if_not_exists(
id: 1,
login: '-',
firstname: '-',
lastname: '',
email: '',
password: 'root',
active: false,
updated_by_id: 1,
created_by_id: 1
2012-04-10 14:06:46 +00:00
)
2014-11-07 00:08:04 +00:00
UserInfo.current_user_id = 1
roles = Role.where( name: 'Customer' )
2014-11-07 00:08:04 +00:00
organizations = Organization.all
groups = Group.all
org_community = Organization.create_if_not_exists(
id: 1,
name: 'Zammad Foundation',
2014-11-07 00:08:04 +00:00
)
user_community = User.create_or_update(
id: 2,
login: 'nicole.braun@zammad.org',
firstname: 'Nicole',
lastname: 'Braun',
email: 'nicole.braun@zammad.org',
password: '',
active: true,
roles: roles,
organization_id: org_community.id,
2012-07-07 09:09:09 +00:00
)
2012-04-10 14:06:46 +00:00
Link::Type.create_if_not_exists( id: 1, name: 'normal' )
Link::Object.create_if_not_exists( id: 1, name: 'Ticket' )
Link::Object.create_if_not_exists( id: 2, name: 'Announcement' )
Link::Object.create_if_not_exists( id: 3, name: 'Question/Answer' )
Link::Object.create_if_not_exists( id: 4, name: 'Idea' )
Link::Object.create_if_not_exists( id: 5, name: 'Bug' )
2012-04-10 14:06:46 +00:00
Ticket::StateType.create_if_not_exists( id: 1, name: 'new' )
Ticket::StateType.create_if_not_exists( id: 2, name: 'open' )
Ticket::StateType.create_if_not_exists( id: 3, name: 'pending reminder' )
Ticket::StateType.create_if_not_exists( id: 4, name: 'pending action' )
Ticket::StateType.create_if_not_exists( id: 5, name: 'closed' )
Ticket::StateType.create_if_not_exists( id: 6, name: 'merged' )
Ticket::StateType.create_if_not_exists( id: 7, name: 'removed' )
2012-04-10 14:06:46 +00:00
Ticket::State.create_if_not_exists( id: 1, name: 'new', state_type_id: Ticket::StateType.find_by(name: 'new').id, )
Ticket::State.create_if_not_exists( id: 2, name: 'open', state_type_id: Ticket::StateType.find_by(name: 'open').id )
Ticket::State.create_if_not_exists( id: 3, name: 'pending reminder', state_type_id: Ticket::StateType.find_by(name: 'pending reminder').id, ignore_escalation: true )
Ticket::State.create_if_not_exists( id: 4, name: 'closed', state_type_id: Ticket::StateType.find_by(name: 'closed').id, ignore_escalation: true )
Ticket::State.create_if_not_exists( id: 5, name: 'merged', state_type_id: Ticket::StateType.find_by(name: 'merged').id, ignore_escalation: true )
Ticket::State.create_if_not_exists( id: 6, name: 'removed', state_type_id: Ticket::StateType.find_by(name: 'removed').id, active: false, ignore_escalation: true )
Ticket::State.create_if_not_exists( id: 7, name: 'pending close', state_type_id: Ticket::StateType.find_by(name: 'pending action').id, next_state_id: 4, ignore_escalation: true )
2012-04-10 14:06:46 +00:00
Ticket::Priority.create_if_not_exists( id: 1, name: '1 low' )
Ticket::Priority.create_if_not_exists( id: 2, name: '2 normal' )
Ticket::Priority.create_if_not_exists( id: 3, name: '3 high' )
2012-04-10 14:06:46 +00:00
Ticket::Article::Type.create_if_not_exists( id: 1, name: 'email', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 2, name: 'sms', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 3, name: 'chat', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 4, name: 'fax', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 5, name: 'phone', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 6, name: 'twitter status', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 7, name: 'twitter direct-message', communication: true )
2015-07-17 14:55:00 +00:00
Ticket::Article::Type.create_if_not_exists( id: 8, name: 'facebook feed post', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 9, name: 'facebook feed comment', communication: true )
Ticket::Article::Type.create_if_not_exists( id: 10, name: 'note', communication: false )
Ticket::Article::Type.create_if_not_exists( id: 11, name: 'web', communication: true )
2012-04-10 14:06:46 +00:00
Ticket::Article::Sender.create_if_not_exists( id: 1, name: 'Agent' )
Ticket::Article::Sender.create_if_not_exists( id: 2, name: 'Customer' )
Ticket::Article::Sender.create_if_not_exists( id: 3, name: 'System' )
2012-04-10 14:06:46 +00:00
UserInfo.current_user_id = user_community.id
ticket = Ticket.create(
group_id: Group.where( name: 'Users' ).first.id,
customer_id: User.where( login: 'nicole.braun@zammad.org' ).first.id,
owner_id: User.where( login: '-' ).first.id,
title: 'Welcome to Zammad!',
state_id: Ticket::State.where( name: 'new' ).first.id,
priority_id: Ticket::Priority.where( name: '2 normal' ).first.id,
)
Ticket::Article.create(
ticket_id: ticket.id,
type_id: Ticket::Article::Type.where(name: 'phone' ).first.id,
sender_id: Ticket::Article::Sender.where(name: 'Customer' ).first.id,
from: 'Zammad Feedback <feedback@zammad.org>',
body: 'Welcome!
2012-04-10 14:06:46 +00:00
Thank you for installing Zammad.
2012-04-10 14:06:46 +00:00
You will find updates and patches at http://zammad.org/. Online
documentation is available at http://guides.zammad.org/. You can also
use our forums at http://forums.zammad.org/
Regards,
The Zammad.org Project
',
internal: false,
)
2012-04-10 14:06:46 +00:00
UserInfo.current_user_id = 1
overview_role = Role.where( name: 'Agent' ).first
Overview.create_if_not_exists(
name: 'My assigned Tickets',
link: 'my_assigned',
prio: 1000,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [ 1, 2, 3, 7 ],
},
'ticket.owner_id' => {
operator: 'is',
2015-09-20 00:27:04 +00:00
value: 'current_user.id',
},
2012-04-10 14:06:46 +00:00
},
order: {
by: 'created_at',
direction: 'ASC',
2012-04-10 14:06:46 +00:00
},
view: {
d: %w(title customer group created_at),
s: %w(title customer group created_at),
m: %w(number title customer group created_at),
view_mode_default: 's',
},
2012-04-10 14:06:46 +00:00
)
Overview.create_if_not_exists(
name: 'My pending reached Tickets',
link: 'my_pending_reached',
prio: 1010,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: 3,
},
'ticket.owner_id' => {
operator: 'is',
value: 'current_user.id',
},
'ticket.pending_time' => {
operator: 'after (relative)',
value: '1',
},
2012-04-10 14:06:46 +00:00
},
order: {
by: 'created_at',
direction: 'ASC',
2012-04-10 14:06:46 +00:00
},
view: {
d: %w(title customer group created_at),
s: %w(title customer group created_at),
m: %w(number title customer group created_at),
view_mode_default: 's',
},
2012-04-10 14:06:46 +00:00
)
Overview.create_if_not_exists(
name: 'Unassigned & Open Tickets',
link: 'all_unassigned',
prio: 1020,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [1, 2, 3],
},
'ticket.owner_id' => {
operator: 'is',
value: 1,
},
},
order: {
by: 'created_at',
direction: 'ASC',
},
view: {
d: %w(title customer group created_at),
s: %w(title customer group created_at),
m: %w(number title customer group created_at),
view_mode_default: 's',
},
2012-04-10 14:06:46 +00:00
)
Overview.create_if_not_exists(
name: 'All Open Tickets',
link: 'all_open',
prio: 1030,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [1, 2, 3],
},
2012-04-10 14:06:46 +00:00
},
order: {
by: 'created_at',
direction: 'ASC',
2012-04-10 14:06:46 +00:00
},
view: {
d: %w(title customer group state owner created_at),
s: %w(title customer group state owner created_at),
m: %w(number title customer group state owner created_at),
view_mode_default: 's',
},
2012-04-10 14:06:46 +00:00
)
2015-01-26 06:55:14 +00:00
Overview.create_if_not_exists(
name: 'All pending reached Tickets',
link: 'all_pending_reached',
prio: 1035,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [3],
},
'ticket.pending_time' => {
operator: 'after (relative)',
value: 1,
},
2015-01-26 06:55:14 +00:00
},
order: {
by: 'created_at',
direction: 'ASC',
2015-01-26 06:55:14 +00:00
},
view: {
d: %w(title customer group owner created_at),
s: %w(title customer group owner created_at),
m: %w(number title customer group owner created_at),
view_mode_default: 's',
2015-01-26 06:55:14 +00:00
},
)
Overview.create_if_not_exists(
name: 'Escalated Tickets',
link: 'all_escalated',
prio: 1040,
role_id: overview_role.id,
condition: {
'ticket.escalation_time' => {
operator: 'before (relative)',
value: 5,
},
2012-04-10 14:06:46 +00:00
},
order: {
by: 'escalation_time',
direction: 'ASC',
2012-04-10 14:06:46 +00:00
},
view: {
d: %w(title customer group owner escalation_time),
s: %w(title customer group owner escalation_time),
m: %w(number title customer group owner escalation_time),
view_mode_default: 's',
},
2012-04-10 14:06:46 +00:00
)
overview_role = Role.where( name: 'Customer' ).first
Overview.create_if_not_exists(
name: 'My Tickets',
link: 'my_tickets',
prio: 1000,
role_id: overview_role.id,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [ 1, 2, 3, 4, 6 ],
},
'ticket.customer_id' => {
operator: 'is',
value: 'current_user.id',
},
2012-09-04 21:28:49 +00:00
},
order: {
by: 'created_at',
direction: 'DESC',
2012-09-04 21:28:49 +00:00
},
view: {
d: %w(title customer state created_at),
s: %w(number title state created_at),
m: %w(number title state created_at),
view_mode_default: 's',
},
2012-09-04 21:28:49 +00:00
)
Overview.create_if_not_exists(
name: 'My Organization Tickets',
link: 'my_organization_tickets',
prio: 1100,
role_id: overview_role.id,
organization_shared: true,
condition: {
'ticket.state_id' => {
operator: 'is',
value: [ 1, 2, 3, 4, 6 ],
},
'ticket.organization_id' => {
operator: 'is',
value: 'current_user.organization_id',
},
},
order: {
by: 'created_at',
direction: 'DESC',
},
view: {
d: %w(title customer state created_at),
s: %w(number title customer state created_at),
m: %w(number title customer state created_at),
view_mode_default: 's',
},
)
2012-09-04 21:28:49 +00:00
Channel.create_if_not_exists(
2015-08-28 00:53:14 +00:00
area: 'Email::Notification',
options: {
2015-08-28 00:53:14 +00:00
outbound: {
adapter: 'smtp',
options: {
host: 'host.example.com',
user: '',
password: '',
ssl: true,
},
},
},
group_id: 1,
preferences: { online_service_disable: true },
active: false,
)
Channel.create_if_not_exists(
2015-08-28 00:53:14 +00:00
area: 'Email::Notification',
options: {
outbound: {
adapter: 'sendmail',
},
},
preferences: { online_service_disable: true },
active: true,
)
network = Network.create_if_not_exists(
id: 1,
name: 'base',
2012-04-10 14:06:46 +00:00
)
Network::Category::Type.create_if_not_exists(
id: 1,
name: 'Announcement',
2012-04-10 14:06:46 +00:00
)
Network::Category::Type.create_if_not_exists(
id: 2,
name: 'Idea',
2012-04-10 14:06:46 +00:00
)
Network::Category::Type.create_if_not_exists(
id: 3,
name: 'Question',
2012-04-10 14:06:46 +00:00
)
Network::Category::Type.create_if_not_exists(
id: 4,
name: 'Bug Report',
2012-04-10 14:06:46 +00:00
)
Network::Privacy.create_if_not_exists(
id: 1,
name: 'logged in',
key: 'loggedIn',
2012-04-10 14:06:46 +00:00
)
Network::Privacy.create_if_not_exists(
id: 2,
name: 'logged in and moderator',
key: 'loggedInModerator',
2012-04-10 14:06:46 +00:00
)
Network::Category.create_if_not_exists(
id: 1,
name: 'Announcements',
network_id: network.id,
network_category_type_id: Network::Category::Type.where(name: 'Announcement').first.id,
network_privacy_id: Network::Privacy.where(name: 'logged in and moderator').first.id,
allow_comments: true,
2012-04-10 14:06:46 +00:00
)
Network::Category.create_if_not_exists(
id: 2,
name: 'Questions',
network_id: network.id,
allow_comments: true,
network_category_type_id: Network::Category::Type.where(name: 'Question').first.id,
network_privacy_id: Network::Privacy.where(name: 'logged in').first.id,
# :network_categories_moderator_user_ids => User.where(:login => '-').first.id,
2012-04-10 14:06:46 +00:00
)
Network::Category.create_if_not_exists(
id: 3,
name: 'Ideas',
network_id: network.id,
network_category_type_id: Network::Category::Type.where(name: 'Idea').first.id,
network_privacy_id: Network::Privacy.where(name: 'logged in').first.id,
allow_comments: true,
2012-04-10 14:06:46 +00:00
)
Network::Category.create_if_not_exists(
id: 4,
name: 'Bug Reports',
network_id: network.id,
network_category_type_id: Network::Category::Type.where(name: 'Bug Report').first.id,
network_privacy_id: Network::Privacy.where(name: 'logged in').first.id,
allow_comments: true,
2012-04-10 14:06:46 +00:00
)
item = Network::Item.create(
title: 'Example Announcement',
body: 'Some announcement....',
network_category_id: Network::Category.where(name: 'Announcements').first.id,
2012-04-10 14:06:46 +00:00
)
Network::Item::Comment.create(
network_item_id: item.id,
body: 'Some comment....',
2012-04-10 14:06:46 +00:00
)
item = Network::Item.create(
title: 'Example Question?',
body: 'Some questions....',
network_category_id: Network::Category.where(name: 'Questions').first.id,
2012-04-10 14:06:46 +00:00
)
Network::Item::Comment.create(
network_item_id: item.id,
body: 'Some comment....',
2012-04-10 14:06:46 +00:00
)
item = Network::Item.create(
title: 'Example Idea',
body: 'Some idea....',
network_category_id: Network::Category.where(name: 'Ideas').first.id,
2012-04-10 14:06:46 +00:00
)
Network::Item::Comment.create(
network_item_id: item.id,
body: 'Some comment....',
2012-04-10 14:06:46 +00:00
)
item = Network::Item.create(
title: 'Example Bug Report',
body: 'Some bug....',
network_category_id: Network::Category.where(name: 'Bug Reports').first.id,
2012-04-10 14:06:46 +00:00
)
Network::Item::Comment.create(
network_item_id: item.id,
body: 'Some comment....',
2012-04-10 14:06:46 +00:00
)
2012-05-18 14:24:00 +00:00
2015-04-27 06:20:52 +00:00
# install locales and translations
2015-07-01 11:53:21 +00:00
Locale.create_if_not_exists(
2015-07-01 08:50:42 +00:00
locale: 'en-us',
alias: 'en',
name: 'English (United States)',
)
2015-04-27 06:20:52 +00:00
Locale.load
Translation.load
# install all packages in auto_install
2013-01-21 18:53:32 +00:00
Package.auto_install()