initial
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* Module Name: Secure Sign On
|
||||
* Module Description: Let users log in with their WordPress.com account for quick, secure access.
|
||||
* Sort Order: 30
|
||||
* Recommendation Order: 5
|
||||
* First Introduced: 2.6
|
||||
* Requires Connection: Yes
|
||||
* Requires User Connection: Yes
|
||||
* Auto Activate: No
|
||||
* Module Tags: Developers
|
||||
* Feature: Security
|
||||
* Additional Search Queries: sso, single sign on, login, log in, 2fa, two-factor
|
||||
*
|
||||
* @package automattic/jetpack
|
||||
*/
|
||||
|
||||
use Automattic\Jetpack\Connection\SSO;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
SSO::get_instance();
|
||||
|
||||
add_action(
|
||||
'jetpack_modules_loaded',
|
||||
function () {
|
||||
Jetpack::enable_module_configurable( __FILE__ );
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user