[ADF-3142] Added missing info about 'remember me' in login docs (#3448)

This commit is contained in:
Andy Stark
2018-06-07 14:21:40 +01:00
committed by Eugenio Romano
parent cb70c034d2
commit 581867ad66
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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;