automate employer setup import from word and manual entry working
This commit is contained in:
+1
-1
@@ -8,4 +8,4 @@ test:
|
||||
production:
|
||||
adapter: redis
|
||||
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
|
||||
channel_prefix: railsondocker_production
|
||||
channel_prefix: baclight_production
|
||||
|
||||
@@ -37,6 +37,15 @@ development:
|
||||
password: BSTIBOY
|
||||
database_tasks: false
|
||||
tds_version: 7.3
|
||||
britton_web:
|
||||
<<: *default
|
||||
host: 10.41.82.73
|
||||
port: 1433
|
||||
database: BrittonWeb
|
||||
username: SA
|
||||
password: Adm1nBb5
|
||||
database_tasks: false
|
||||
tds_version: 7.3
|
||||
|
||||
# The specified database role being used to connect to PostgreSQL.
|
||||
# To create additional roles in PostgreSQL see `$ createuser --help`.
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
Rails.application.config.to_prepare do
|
||||
ActiveModel::Type.register(:array_of_items, ArrayOfItemsType)
|
||||
end
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
Rails.application.routes.draw do
|
||||
resources :employer_setup, only: [:new, :create]
|
||||
get "welcome/index"
|
||||
get 'id_card_benefits_templates/get_template_benefits/:id', to: 'id_card_benefits_templates#get_template_benefits'
|
||||
|
||||
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
|
||||
# Can be used by load balancers and uptime monitors to verify that the app is live.
|
||||
|
||||
Reference in New Issue
Block a user