-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We need to be able to access the timestamp a claim was verified in big query. The provider verification is flagged in the analytics block list so isn't sent over to big query (it's a json structure and some of it's fields are pii). To ensure big query has access to the verification timestamp we have added a new column on the claim `Claim#verified_at` which will be sent over to big query. A follow up PR will back fill this column on already verified claims.
- Loading branch information
Showing
6 changed files
with
34 additions
and
18 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,7 @@ shared: | |
- onelogin_auth_at | ||
- onelogin_idv_at | ||
- started_at | ||
- verified_at | ||
:decisions: | ||
- id | ||
- result | ||
|
5 changes: 5 additions & 0 deletions
5
db/migrate/20241028095040_add_verified_at_timestamp_to_claims.rb
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 @@ | ||
class AddVerifiedAtTimestampToClaims < ActiveRecord::Migration[7.0] | ||
def change | ||
add_column :claims, :verified_at, :datetime | ||
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
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