-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
128 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
version: 2.1 | ||
orbs: | ||
browser-tools: circleci/[email protected].2 | ||
browser-tools: circleci/[email protected].3 | ||
|
||
jobs: | ||
build: | ||
|
@@ -50,8 +50,8 @@ jobs: | |
- run: | ||
name: Setup Chrome | ||
command: | | ||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | ||
sudo apt install ./google-chrome-stable_current_amd64.deb | ||
wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.198-1_amd64.deb | ||
sudo apt install ./google-chrome-stable_114.0.5735.198-1_amd64.deb | ||
# run tests! | ||
- run: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
app/views/user_mailer/cscrm_data_collection2_notification.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<%= render 'user_mailer/components/header' %> | ||
<h3> | ||
CSCRM Data Collection Notification | ||
</h3> | ||
<p> | ||
Updates to the CSCRM Data Collection, | ||
<%= @collection.id %> | ||
have occurred. | ||
</p> | ||
<p> | ||
Visit | ||
<a href="<%= admin_cscrm_data_collections2_url(@collection) %>"> | ||
<%= admin_cscrm_data_collections2_url(@collection) %> | ||
</a> to view. | ||
</p> |
5 changes: 5 additions & 0 deletions
5
app/views/user_mailer/cscrm_data_collection2_notification.text.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Touchpoints.gov CSCRM Data Collection 2 Notification | ||
|
||
Updates to the CSCRM Data Collection 2, <%= @collection.id %> have occurred. | ||
|
||
Visit <%= admin_cscrm_data_collections2_index_url(@collection) %> to view. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
FactoryBot.define do | ||
factory :cscrm_data_collection2 do | ||
year { 2023 } | ||
quarter { 4 } | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters