Changeset 3333192
- Timestamp:
- 07/23/2025 11:20:39 PM (8 months ago)
- Location:
- rainbow-secure/trunk
- Files:
-
- 4 edited
-
assets/js/manage-subscription.js (modified) (1 diff)
-
inc/Api/Ajax/FetchSubscriptionDataHandler.php (modified) (2 diffs)
-
rainbow-secure.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rainbow-secure/trunk/assets/js/manage-subscription.js
r3321484 r3333192 26 26 const queryParams = new URLSearchParams({ 27 27 email: data.email, 28 site: rs_subscription_data.site_url, 28 company_url: rs_subscription_data.site_url, 29 appid: data.appid, 29 30 keep_login: data.keep_local_login ? 1 : 0 30 31 }); -
rainbow-secure/trunk/inc/Api/Ajax/FetchSubscriptionDataHandler.php
r3321484 r3333192 18 18 $ssoQty = get_option('rainbow_secure_sso_quantity'); 19 19 $keepLocalLogin = get_option('rainbow_secure_keep_local_login') ? true : false; 20 $status = get_option('rainbow_secure_activation_status'); 20 $status = get_option('rainbow_secure_activation_status'); 21 $app_id = get_option('rainbow_secure_app_token'); 21 22 22 23 wp_send_json_success([ … … 26 27 'sso_quantity' => $ssoQty ?: 0, 27 28 'status' => $status ?: "N/A", 28 'keep_local_login' => $keepLocalLogin 29 'keep_local_login' => $keepLocalLogin, 30 'appid' => $app_id 29 31 ]); 30 32 } -
rainbow-secure/trunk/rainbow-secure.php
r3324593 r3333192 8 8 Plugin URI: https://rainbowsecure.com 9 9 Description: Rainbow Secure MFA and SSO Plugin, allows you to secure your website with an interactive multi-layer security and get single sign on. 10 Version: 1. 2.010 Version: 1.3.0 11 11 Author: Rainbow Secure 12 12 License: GPLv2 or later -
rainbow-secure/trunk/readme.txt
r3324593 r3333192 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1. 2.06 Stable tag: 1.3.0 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 88 88 == Changelog == 89 89 90 = 1. 2.0 =90 = 1.3.0 = 91 91 * Initial release of Rainbow Secure 92 92 * Multi-Factor Authentication (MFA) options including OTP and Adaptive Authentication … … 99 99 == Upgrade Notice == 100 100 101 = 1. 2.0 =101 = 1.3.0 = 102 102 Initial release with MFA and SSO support. Configure MFA options and security policies for enhanced protection. 103 103
Note: See TracChangeset
for help on using the changeset viewer.