Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Settings for dc #57

Draft
wants to merge 25 commits into
base: trunk
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5825377
update aca_entities reference
vkghub Sep 28, 2022
862a49f
disabled notice generation for determinations - test commit
vkghub Sep 29, 2022
e62e0f2
rubocop fix and aca_entities ref update
vkghub Oct 12, 2022
6e9dc46
uncommet determination subscriber code
vkghub Oct 12, 2022
4a0987f
Change settings from ME to DC
saikumar9 Apr 20, 2022
4c85ffe
changed logo and tagline settings and added images
harshaellanki Apr 29, 2022
ccb7acd
rubocop fixes
harshaellanki Apr 29, 2022
0b003f2
added templates with client name space
harshaellanki Apr 29, 2022
9b6eed5
changed taglines name
harshaellanki Apr 29, 2022
e3d4018
fix issue with footer verbiage
May 20, 2022
b3b1189
removes period
Jun 15, 2022
bde23c1
changed aca_enrities ref
harshaellanki Oct 15, 2022
03e062b
Merge branch 'trunk' into settings_for_DC
Battula Mar 30, 2023
34d1a1d
Merge branch 'trunk' into settings_for_DC
jacobkagon Apr 26, 2023
3570c95
Merge remote-tracking branch 'origin' into settings_for_DC
kvootla Sep 16, 2023
193b43e
Merge branch 'trunk' into settings_for_DC
saikumar9 Oct 5, 2023
ac38ec0
Merge branch 'trunk' into settings_for_DC
saikumar9 Oct 10, 2023
8ce9004
update aca ref (#125)
yosefserkez Dec 7, 2023
e22f25e
update ref
yosefserkez Dec 8, 2023
d08923b
Merge branch 'trunk' into settings_for_DC
ATBull81 Feb 20, 2024
830f4a0
Merge branch 'trunk' into settings_for_DC
saikumar9 Feb 21, 2024
e5c0c14
Merge branch 'trunk' into settings_for_DC
ATBull81 Feb 26, 2024
25439d6
Merge branch 'trunk' into settings_for_DC
saikumar9 Mar 7, 2024
e498726
Merge branch 'trunk' into settings_for_DC
saikumar9 Mar 29, 2024
ef43456
Merge branch 'trunk' into settings_for_DC
saikumar9 Jun 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app/assets/images/dc_invoice_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/dc_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/dc_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/dc_logo_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions app/models/notice_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,13 @@ def employee_appeal_rights
def ivl_taglines
join_pdfs [
notice_path,
Rails.root.join('lib/pdf_templates', 'taglines.pdf')
Rails.root.join("lib/pdf_templates/#{Settings.site.key}", 'taglines.pdf')
]
end

def attach_blank_page(template_path = nil)
path = template_path.nil? ? notice_path : template_path
blank_page = Rails.root.join('lib/pdf_templates', 'blank.pdf')
blank_page = Rails.root.join("lib/pdf_templates/#{Settings.site.key}", 'blank.pdf')
page_count = Prawn::Document.new(template: path).page_count
join_pdfs([path, blank_page], path) if page_count.odd?
end
Expand Down
4 changes: 2 additions & 2 deletions app/operations/documents/create_with_insert.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def document(params)

def attach_blank_page(template_path = nil)
path = template_path.nil? ? @main_document_path : template_path
blank_page = Rails.root.join('lib/pdf_templates', 'blank.pdf')
blank_page = Rails.root.join("lib/pdf_templates/#{Settings.site.key}", 'blank.pdf')
page_count = Prawn::Document.new(template: path).page_count
join_pdfs([path, blank_page], path) if page_count.odd?
end
Expand Down Expand Up @@ -118,7 +118,7 @@ def ivl_non_discrimination
def ivl_attach_envelope
join_pdfs [
@main_document_path,
Rails.root.join('lib/pdf_templates', 'taglines.pdf')
Rails.root.join("lib/pdf_templates/#{Settings.site.key}", "taglines.pdf")
]
end

Expand Down
18 changes: 13 additions & 5 deletions app/views/shared/footer_ivl.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@
<body onload="subst()">
<br />
<table class="footer-section" style="color: #333333;" width="100%" border="0">
<tr>
<td style="padding:3px 10px; font-size:8px;" align="center">Questions? <br>
Go to www.CoverME.gov or call <%= contact_center_short_number %>
</td>
</tr>
<% if Settings.site.key.to_s == 'me'%>
<tr>
<td style="padding:3px 10px; font-size:8px;" align="center">Questions? <br>
Go to www.CoverME.gov or call <%= contact_center_short_number %>
</td>
</tr>
<% else %>
<tr>
<td style="padding:3px 10px; font-size:8px;" align="center">
Questions? Call <%= Settings.site.short_name %> at <%= Settings.contact_center.contact_center_number_for_display %>, or go to <%= Settings.site.short_url %>
</td>
</tr>
<% end %>
</table>
</body>
</html>
38 changes: 19 additions & 19 deletions config/settings.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
site:
key: :me
subdomain: "cme"
domain_name: "cme.enroll.openhbx.org"
key: :dc
subdomain: "dc"
domain_name: "www.DCHealthLink.com"
short_name: "DC Health Link"
site_title: "Maine CoverME"
home_url: "https://cme.enroll.openhbx.org/"
home_url: "https://www.DCHealthLink.com/"
home_business_url: "https://www.accesshealthct.com/AHCT/LandingPageCTHIX"
# copyright_period_start: "2013"
help_url: "https://www.coverme.gov/help/"
# faqs_url: "https://www.dchealthlink.com/Frequently-Asked-Questions"
# business_resource_center_url: "https://dchealthlink.com/smallbusiness/"
# nondiscrimination_notice_url: "https://www.dchealthlink.com/nondiscrimination"
# policies_url: "https://dchealthlink.com/"
policies_url: "https://dchealthlink.com/"
main_web_address_url: "https://www.dchealthlink.com/"
invoice_bill_url: "https://www.e-billexpress.com/ebpp/DCHEALTHPAY/"
payment_pdf_url: "pdf/employers_paying_your_premiums_online.pdf"
user_sign_in_url: "https://www.accesshealthct.com/AHCT/LandingPageCTHIX"
website_name: "https://www.accesshealthct.com/AHCT/LandingPageCTHIX"
website_name: "www.DCHealthLink.com"
main_web_address: "https://www.accesshealthct.com/AHCT/LandingPageCTHIX"
health_care_website: "www.healthcare.gov"
health_care_website_url: "https://www.healthcare.gov"
short_name: "CoverME"
byline: "Maine's Official Health Insurance Marketplace"
long_name: "Maine CoverME"
header_message: "Maine's Official Health Insurance Marketplace"
logo_file_name: "logo_me.svg"
header_message: "Welcome to the District's Health Insurance Marketplace"
logo_file_name: "dc_logo.png"
make_their_premium_payments_online: "https://www.e-billexpress.com/ebpp/DCHEALTHPAY/"
tab_icon: 'favicon_me.ico'
mailer_logo_file_name: "coverme.png"
mailer_logo_file_name: "dc_logo.png"
employer_application_deadline_link: "https://dchealthlink.com/smallbusiness/employer-coverage-deadlines"
s3_prefix: "dchbx"
broker_quoting_enabled: false
Expand Down Expand Up @@ -72,9 +72,9 @@ site:
contact_center:
state_and_city: "Augusta, ME"
name: "Maine CoverME's Customer Care Center"
alt_name: "Maine CoverME Customer Service"
alt_name: "DC Health Link Customer Service"
po_box: "PO Box 97022"
phone_number: "1-800-965-7476"
phone_number: "1-855-532-5465"
fax: "1-617-933-3099"
alt_fax: "617-722-4033"
tty_number: "711"
Expand All @@ -90,6 +90,7 @@ contact_center:
zip_code: "04330"
small_business_email: "smallbusiness@coverme.gov"
non_discrimination_email: "info@coverme.gov"
contact_center_number_for_display: "(855) 532-5465 / TTY: 771"

appeals: "info@coverme.gov"

Expand Down Expand Up @@ -148,9 +149,9 @@ invoices:
minimum_invoice_display_year: 2015

aca:
state_key : "me"
state_name: "Maine"
state_abbreviation: "ME"
state_key : "dc"
state_name: "District of Columbia"
state_abbreviation: "DC"
market_kinds: ["shop", "individual", "fehb"]

hbx_abbreviation: "Maine CoverME"
Expand Down Expand Up @@ -347,10 +348,9 @@ notices:
individual_market:
shopping_name: "Plan Compare"
mail_address:
address_1: "PO Box 44018"
city: "Augusta"
state: "Maine"
zip_code: "20026"
address_1: 'PO Box 44018'
city: 'Washington'
zip_code: '20026'
medicaid:
agency_name: "Office for Family Independence"
program_name: "MaineCare (Medicaid)"
Expand Down
Binary file added lib/pdf_templates/dc/blank.pdf
Binary file not shown.
Binary file added lib/pdf_templates/dc/taglines.pdf
Binary file not shown.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions system/config/templates/features/enroll_app/enroll_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ registry:
- key: :byline
item: "Welcome to Maine's Health Insurance Marketplace"
- key: :logo_file_name
item: "logo_me.svg"
item: "dc_logo.png"
- key: :make_their_premium_payments_online
item: ""
- key: :tab_icon
Expand Down Expand Up @@ -209,7 +209,7 @@ registry:
- key: :producer_advisory_committee_url
item: ""
- key: :mailer_logo_file_name
item: "coverme.jpg"
item: "dc_logo.jpg"
- key: :broker_course_administering_organization_number
item: '(877) 880-1335'
- key: :broker_course_administering_organization
Expand All @@ -233,7 +233,7 @@ registry:
- key: :assistance_estimate_url
item: ''
- key: :header_logo
item: "logo_me.svg"
item: "dc_logo.jpg"
- key: :eligibile_immigration_statuses_url
item: ""
- key: :assistance_estimate_url
Expand Down
Loading