Browse Source

Minor - Azure plugin: Update readme - refs BT#9859

Angel Fernando Quiroz Campos 5 years ago
parent
commit
8988643f99

+ 6 - 1
plugin/azure_active_directory/README.md

@@ -13,4 +13,9 @@ Allow authentication (with OAuth2) with Microsoft's Azure Active Directory.
 * _Application ID_: Enter the Application Id assinged to your app by the Azure portal.
 * _Application secret_: Enter the client secret created.
 * _Block name_: (Optional) The name to show above the login button.
-* And assign a region. Preferably `login_bottom`.
+* _Force logout button_: (Optional) Add a button to force logout from Azure.
+* _Management login_: (Optional) Disable the chamilo login and enable an alternative login page for users.   
+   You will need copy the `/plugin/azure_active_directory/layout/login_form.tpl` file to `/main/template/overrides/layout/` directory.
+* _Name for the management login_: A name for the management login. By default is "Management Login".
+
+And assign a region. Preferably `login_bottom`.

+ 1 - 1
plugin/azure_active_directory/src/AzureActiveDirectory.php

@@ -41,7 +41,7 @@ class AzureActiveDirectory extends Plugin
             self::SETTING_MANAGEMENT_LOGIN_NAME => 'text',
         ];
 
-        parent::__construct('2.0', 'Angel Fernando Quiroz Campos', $settings);
+        parent::__construct('2.1', 'Angel Fernando Quiroz Campos', $settings);
     }
 
     /**