Skip to content

Commit

Permalink
include terms accepted flag (#1809)
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-eyds authored Apr 4, 2024
1 parent 4847fce commit 54d98cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ppr-ui/src/composables/userAccess/useUserAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ export const useUserAccess = () => {
const payload: MhrQsPayloadIF = {
...cleanEmpty(getMhrQsInformation.value) as MhrQsPayloadIF,
authorizationName: getMhrQsAuthorization.value.authorizationName,
termsAccepted: true,
phoneNumber: fromDisplayPhone(getMhrQsInformation.value.phoneNumber)
}

Expand Down Expand Up @@ -448,6 +449,7 @@ export const useUserAccess = () => {
return {
authorizationName: getMhrQsAuthorization.value.authorizationName,
dbaName: getMhrQsInformation.value.dbaName,
termsAccepted: true,
submittingParty: {
businessName: getMhrQsSubmittingParty.value.name,
address: getMhrQsSubmittingParty.value.mailingAddress,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { MhrRegistrationHomeLocationIF, MhrRegistrationHomeOwnerGroupIF, Submitt
export interface MhrManufacturerInfoIF {
authorizationName?: string
dbaName?: string
termsAccepted: boolean
description: {
manufacturer: string
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { AddressIF } from '@/interfaces'
export interface MhrQsPayloadIF {
authorizationName: string
businessName: string
termsAccepted: boolean
dbaName?: string
address: AddressIF
phoneNumber: string
Expand Down

0 comments on commit 54d98cd

Please sign in to comment.