Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Social | Enable connections management for WPCOM sites #41019

Draft
wants to merge 5 commits into
base: social/unified-connections-management
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: other

Fixed unit tests after publicize schema changes
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,14 @@ public function test_publicize_get_all_connections_for_user() {
$facebook_connection = array(
'id_number' => array(
'connection_data' => array(
'user_id' => 0,
'id' => 123,
'user_id' => 0,
'service_name' => 'facebook',
'connection_id' => 123,
'can_disconnect' => true,
'profile_link' => false,
'shared' => false,
'status' => 'ok',
),
),
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: changed

Social | Enable connections management for WPCOM sites
Original file line number Diff line number Diff line change
Expand Up @@ -1093,12 +1093,7 @@ class WPCOM_Features {
),
),
self::SOCIAL_CONNECTIONS_MANAGEMENT => array(
array(
// This feature isn't launched yet, so we're ensuring that it's not available on any plans.
'before' => '1900-01-01',
self::WPCOM_ALL_SITES,
self::JETPACK_ALL_SITES,
),
self::WPCOM_ALL_SITES,
),
self::SOCIAL_EDITOR_PREVIEW => array(
array(
Expand Down
Loading