flowchart TD
A([Start]) --> B{Did you fix a bug?}
B -->|Yes| C([ **fix** ])
B -->|No| D{Did you change functionality or affect the UI?}
D -->|Yes| E([**feat**])
D -->|No| F{Did you add or change tests?}
F -->|Yes| G([**test**])| // https://mailchimp.com/help/css-hooks-for-customizing-forms | |
| // Container for form | |
| #mc_embed_signup { | |
| #mc-embedded-subscribe-form { | |
| } | |
| div.mc-field-group { |
Here's how set your password reset experience so that the user doesn't have to enter their email address... without altering vendor/core - tested with Laravel 5.8 (should be fine with later versions, too):
Firstly create a new notification for your app:
php artisan make:notification ResetPassword
Then open the newly created file: app\Notifications\ResetPassword.php and make the following changes:
Here's how to overcome this common gotcha: The default password reset system not working out of the box with Laravel 5.x (as you're not sent the user's password), without having to alter altering vendor/core. Here's how to make it work as you'd expect it to without changing any vendor files.
Firstly create a new notification for your app:
php artisan make:notification ResetPassword
Then open the newly created file: app\Notifications\ResetPassword.php and make the following changes:
| -- -------------------------------------------------------------------------- -- | |
| -- in: TppDefine.lua | |
| -- -------------------------------------------------------------------------- -- | |
| -- list of cutscenes available upon returning to mother base | |
| -- ordered by priority | |
| _.MB_FREEPLAY_DEMO_PRIORITY_LIST={ | |
| "GoToMotherBaseAfterQuietBattle", -- quiet's heli fight | |
| "ArrivedMotherBaseAfterQuietBattle", -- quiet's arrival |