Skip to content

Commit

Permalink
Post-migration experience: Add domain DNS task (#39764)
Browse files Browse the repository at this point in the history
* Add domain dns mapping task

* changelog

* Fix linter

* Try relative URL

* Remove calypso path callback

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/11348704666

Upstream-Ref: Automattic/jetpack@54a0bb7
  • Loading branch information
sixhours authored and matticbot committed Oct 15, 2024
1 parent d74c3d6 commit b578ada
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 85 deletions.
58 changes: 29 additions & 29 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/automattic/jetpack-mu-wpcom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This is an alpha version! The changes listed here are not final.

### Added
- Add new task for domain connection to post-migration checklist.
- Add new task for domain mapping in migration Launchpad
- Adds JSON translation files
- Adds the placeholder task list for the Migration flow
- Add the Plugin Review task for the Post-migration launchpad experience
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,13 @@ function wpcom_launchpad_get_task_definitions() {
'is_complete_callback' => 'wpcom_launchpad_is_domain_customize_completed',
'is_visible_callback' => '__return_true',
),
'domain_dns_mapped' => array(
'get_title' => function () {
return __( "Update your domain's DNS", 'jetpack-mu-wpcom' );
},
'is_complete_callback' => 'wpcom_launchpad_is_task_option_completed',
'is_visible_callback' => '__return_true',
),
);

$extended_task_definitions = apply_filters( 'wpcom_launchpad_extended_task_definitions', array() );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ function wpcom_launchpad_get_task_list_definitions() {
'review_site',
'review_plugins',
'connect_migration_domain',
'domain_dns_mapped',
),
),
);
Expand Down
Loading

0 comments on commit b578ada

Please sign in to comment.