Halfway through table redesign, saving to revert to working version
This commit is contained in:
+10
-10
@@ -22,16 +22,16 @@ default: &default
|
||||
development:
|
||||
baclight:
|
||||
<<: *default
|
||||
# host: db
|
||||
# database: dev_tools_dev
|
||||
# username: sa
|
||||
# password: Br1tt0nPassw0rd
|
||||
host: 10.41.82.73 #Dev
|
||||
port: 1433
|
||||
database: BrittonConnect
|
||||
username: BSTI
|
||||
password: BSTIBOY
|
||||
tds_version: 7.3
|
||||
host: db
|
||||
database: baclight_dev
|
||||
username: sa
|
||||
password: Br1tt0nPassw0rd
|
||||
# host: 10.41.82.73 #Dev
|
||||
# port: 1433
|
||||
# database: BrittonConnect
|
||||
# username: BSTI
|
||||
# password: BSTIBOY
|
||||
# tds_version: 7.3
|
||||
vhcs:
|
||||
<<: *default
|
||||
host: 10.41.82.72 #Prod
|
||||
|
||||
+18
-17
@@ -1,10 +1,24 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
Rails.application.routes.draw do
|
||||
resources :card_rxes
|
||||
resources :card_providers
|
||||
resources :card_logo_files do
|
||||
get 'image', on: :member, constraints: { id: /.*/ }
|
||||
namespace :id_card do
|
||||
resources :setup, constraints: { id: /.*/ }
|
||||
resources :rx_sections
|
||||
resources :provider_sections
|
||||
resources :employer_logos do
|
||||
get 'image', on: :member
|
||||
end
|
||||
resources :network_logos do
|
||||
get 'image', on: :member, constraints: { id: /.*/ }
|
||||
end
|
||||
resources :print_data do
|
||||
collection do
|
||||
get 'generate_sample'
|
||||
get 'generate_print'
|
||||
get 'generate_mobile_display'
|
||||
get 'generate_full_page'
|
||||
end
|
||||
end
|
||||
end
|
||||
# resources :employer_setup
|
||||
resources :employers do
|
||||
@@ -13,24 +27,11 @@ Rails.application.routes.draw do
|
||||
end
|
||||
end
|
||||
|
||||
resources :sample_id_cards do
|
||||
collection do
|
||||
get 'generate_sample'
|
||||
get 'generate_print'
|
||||
get 'generate_mobile_display'
|
||||
get 'generate_full_page'
|
||||
end
|
||||
end
|
||||
|
||||
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.
|
||||
get "up" => "rails/health#show", as: :rails_health_check
|
||||
|
||||
resources :articles do
|
||||
resources :comments
|
||||
end
|
||||
|
||||
root "welcome#index"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user