-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MDS-6139] project stages application button (#3273)
* shush the key errors and sonarlint warnings * fix routing on MS * refactored to TS * make things TS-y on CORE, shush a key warning about the project contact, and remove some unused params * testing & solarlint issues on CORE * flesh out data mocks a bit, use common one where we weren't already * try fix date in test
- Loading branch information
Showing
22 changed files
with
1,480 additions
and
590 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
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 |
---|---|---|
|
@@ -7350,6 +7350,73 @@ export const EXPLOSIVES_PERMITS = { | |
}, | ||
}; | ||
|
||
export const EMLI_CONTACTS_BY_REGION = [ | ||
{ | ||
contact_guid: "7f107cdd-974c-4505-b076-9a88438a2fce", | ||
contact_id: 1, | ||
emli_contact_type_code: "MMO", | ||
mine_region_code: null, | ||
is_major_mine: true, | ||
is_general_contact: false, | ||
email: "[email protected]", | ||
phone_number: null, | ||
first_name: null, | ||
last_name: null, | ||
fax_number: null, | ||
mailing_address_line_1: null, | ||
mailing_address_line_2: null, | ||
deleted_ind: false, | ||
}, | ||
{ | ||
contact_guid: "f9c42bc7-6d02-4830-b1e0-51a64e8b28cb", | ||
contact_id: 2, | ||
emli_contact_type_code: "CHI", | ||
mine_region_code: null, | ||
is_major_mine: true, | ||
is_general_contact: true, | ||
email: "[email protected]", | ||
phone_number: "123-234-3456", | ||
first_name: "Anna", | ||
last_name: "Albright", | ||
fax_number: null, | ||
mailing_address_line_1: null, | ||
mailing_address_line_2: null, | ||
deleted_ind: false, | ||
}, | ||
{ | ||
contact_guid: "eee5bb02-e92d-43b9-baf0-b7ee07dedbaf", | ||
contact_id: 3, | ||
emli_contact_type_code: "CHP", | ||
mine_region_code: null, | ||
is_major_mine: true, | ||
is_general_contact: true, | ||
email: "[email protected]", | ||
phone_number: "111-222-3333", | ||
first_name: "Blaine", | ||
last_name: "Blainesworth", | ||
fax_number: null, | ||
mailing_address_line_1: null, | ||
mailing_address_line_2: null, | ||
deleted_ind: false, | ||
}, | ||
{ | ||
contact_guid: "402fd5a0-de84-4ff4-adec-d69f73f6f106", | ||
contact_id: 18, | ||
emli_contact_type_code: "HSI", | ||
mine_region_code: "SC", | ||
is_major_mine: true, | ||
is_general_contact: false, | ||
email: "[email protected]", | ||
phone_number: "000-111-2222", | ||
first_name: "Carla", | ||
last_name: "Carlsdottir", | ||
fax_number: null, | ||
mailing_address_line_1: null, | ||
mailing_address_line_2: null, | ||
deleted_ind: false, | ||
}, | ||
]; | ||
|
||
export const PROJECTS = { | ||
records: [ | ||
{ | ||
|
Oops, something went wrong.