diff --git a/config/environments/development.rb b/config/environments/development.rb index 38f30d0d..34766ec9 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -46,8 +46,8 @@ Osem::Application.configure do # Test mailbot settings config.mailbot = { - ytlf_ticket_id: 50 - bcc_address: 'test@test.com' + ytlf_ticket_id: 50, + bcc_address: 'test@test.com' } # Use omniauth mock credentials diff --git a/config/environments/production.rb b/config/environments/production.rb index 84db2bb9..fd6b8a90 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -104,7 +104,7 @@ Osem::Application.configure do # Mailbot settings config.mailbot = { - ytlf_ticket_id: (ENV['YTLF_TICKET_ID'] || 50) - bcc_address: ENV['OSEM_MESSAGE_BCC_ADDRESS'] + ytlf_ticket_id: (ENV['YTLF_TICKET_ID'] || 50), + bcc_address: ENV['OSEM_MESSAGE_BCC_ADDRESS'] } end diff --git a/config/environments/test.rb b/config/environments/test.rb index a282831c..9076d8e6 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -54,7 +54,7 @@ Osem::Application.configure do # Test mailbot settings config.mailbot = { - ytlf_ticket_id: 50 - bcc_address: 'test@test.com' + ytlf_ticket_id: 50, + bcc_address: 'test@test.com' } end