-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix: prompt doesn't dismiss when action followed * feat: add link to rewatch introduction video * refactor: move prompts from getting started to dashboard * feat: new getting started flow for Individuals Work in progress, still missing tests, updates to interpretation files, and etc. * feat: consolidate application form * feat: update interpretation placeholder and seeder * chore(localization): run localization * style: fix trailing comma in json file * test: update tests * test: add test for individual getting started flow fix: prompt doesn't dismiss when action followed feat: add link to rewatch introduction video feat: consolidate application form
- Loading branch information
Showing
22 changed files
with
639 additions
and
272 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
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
16 changes: 16 additions & 0 deletions
16
database/settings/2024_04_11_190038_consolidate_application_links_in_general_settings.php
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,16 @@ | ||
<?php | ||
|
||
use Spatie\LaravelSettings\Migrations\SettingsMigration; | ||
|
||
return new class extends SettingsMigration | ||
{ | ||
public function up(): void | ||
{ | ||
$this->migrator->delete('general.ac_application'); | ||
$this->migrator->delete('general.cc_application'); | ||
$this->migrator->add('general.ac_cc_application', [ | ||
'en' => 'https://share.hsforms.com/1UZjxoUCFRJmcnK8ULsPowwdfpez', | ||
'fr' => 'https://share.hsforms.com/1M0wCcgQwSQ27eBra_asFxwdfpez', | ||
]); | ||
} | ||
}; |
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
Oops, something went wrong.