From 07db91c7ce2779ba781c43fa8a668bbc215ff4fc Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Fri, 11 Nov 2022 17:04:50 +0100 Subject: [PATCH] Update descriptions --- plugins/login-external-sso/index.php | 4 ++-- plugins/login-external/index.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/login-external-sso/index.php b/plugins/login-external-sso/index.php index ded7065db..a3264cc13 100644 --- a/plugins/login-external-sso/index.php +++ b/plugins/login-external-sso/index.php @@ -11,7 +11,7 @@ class LoginExternalSsoPlugin extends \RainLoop\Plugins\AbstractPlugin REQUIRED = '2.21.0', CATEGORY = 'Login', LICENSE = 'MIT', - DESCRIPTION = 'More secure version of Login External with an SSO key'; + DESCRIPTION = 'Login with $_POST "Email", "Password" and "SsoKey". It returns an SSO hash to use with "?Sso&hash="'; public function Init() : void { @@ -48,7 +48,7 @@ class LoginExternalSsoPlugin extends \RainLoop\Plugins\AbstractPlugin { return array( // Was application.ini external_sso_key - Property::NewInstance('key')->SetLabel('SSO key') + \RainLoop\Plugins\Property::NewInstance('key')->SetLabel('SSO key') ->SetDefaultValue(''), ); } diff --git a/plugins/login-external/index.php b/plugins/login-external/index.php index 272702931..5d00d771b 100644 --- a/plugins/login-external/index.php +++ b/plugins/login-external/index.php @@ -11,7 +11,7 @@ class LoginExternalPlugin extends \RainLoop\Plugins\AbstractPlugin REQUIRED = '2.21.0', CATEGORY = 'Login', LICENSE = 'MIT', - DESCRIPTION = ''; + DESCRIPTION = 'Login with $_POST["Email"] and $_POST["Password"] from anywhere'; public function Init() : void {