[ADF-3745] Added docs for remaining classes (#4277)

This commit is contained in:
Andy Stark
2019-02-06 19:07:20 +00:00
committed by Eugenio Romano
parent 2076746b52
commit a31803a6bb
12 changed files with 182 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
Title: Login component
Added: v2.0.0
Status: Active
Last reviewed: 2019-01-16
Last reviewed: 2019-02-06
---
# [Login component](../../lib/core/login/components/login.component.ts "Defined in login.component.ts")
@@ -25,6 +25,7 @@ Authenticates to Alfresco Content Services and Alfresco Process Services.
- [Call an external identity provider to fetch the auth token](#call-an-external-identity-provider-to-fetch-the-auth-token)
- [Controlling form submit execution behaviour](#controlling-form-submit-execution-behaviour)
- [Single Sign-On (SSO)](#single-sign-on-sso)
- [Kerberos](#kerberos)
- [See Also](#see-also)
## Basic usage
@@ -335,6 +336,18 @@ must contain the full URI value:
> In the default ADF application configurations the `silent-refresh.html` file
> gets automatically copied to the application output when building for production.
### Kerberos
Setting the `withCredentials` property to true in the `auth` section of
`app.config.json` will enable Kerberos and bypass the normal login:
```json
{
"auth": {
"withCredentials": "true"
},
```
## See Also
- [Logout directive](logout.directive.md)