mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-3142] Added missing info about 'remember me' in login docs (#3448)
This commit is contained in:
committed by
Eugenio Romano
parent
cb70c034d2
commit
581867ad66
@@ -54,7 +54,7 @@ Authenticates to Alfresco Content Services and Alfresco Process Services.
|
||||
| providers | `string` | | Possible valid values are ECM, BPM or ALL. By default, this component will log in only to ECM. If you want to log in in both systems then use ALL. |
|
||||
| registerLink | `string` | "" | Sets the URL of the REGISTER link in the footer. |
|
||||
| showLoginActions | `boolean` | true | Should the extra actions (`Need Help`, `Register`, etc) be shown? |
|
||||
| showRememberMe | `boolean` | true | Should the `Remember me` checkbox be shown? |
|
||||
| showRememberMe | `boolean` | true | Should the `Remember me` checkbox be shown? When selected, this option will remember the logged-in user after the browser is closed to avoid logging in repeatedly. |
|
||||
| successRoute | `string` | null | Route to redirect to on successful login. |
|
||||
|
||||
### Events
|
||||
|
@@ -58,7 +58,11 @@ export class LoginComponent implements OnInit {
|
||||
|
||||
isPasswordShow: boolean = false;
|
||||
|
||||
/** Should the `Remember me` checkbox be shown? */
|
||||
/**
|
||||
* Should the `Remember me` checkbox be shown? When selected, this
|
||||
* option will remember the logged-in user after the browser is closed
|
||||
* to avoid logging in repeatedly.
|
||||
*/
|
||||
@Input()
|
||||
showRememberMe: boolean = true;
|
||||
|
||||
|
Reference in New Issue
Block a user