Alfresco Angular components ( Documentation -> https://alfresco.github.io/adf-component-catalog )
"component": {
"selector": "check-list",
"startValue": {"name":"option 1", "value":"value 1"},
"settings": {
"allowUpdateOnChange": true,
"hideDefaultAction": true,
"options": [
{
"name": "option 1",
"value": "value 1"
},
{
"name": "option 2",
"value": "value 2"
}
}
}
type
and field
here? Is there any documentation I should read?
good morning
any idea on how to have this fixed?
Alfresco/alfresco-content-app#2739
is it the proposed solution the right way to use it?
In local instance, by decoding the following token (VUdWeVptOXliV0Z1WTJWVVpYTjBPaXRaYWtOU1lsQklhV0ZaU1hNd2VsSjBPRWN5Uld4UmRIWlJhejA9), we are able to obtain the exact username and password.
We are getting the value after decoding this:
performancetest:Test12345
However, if we decode the username and password in production, we receive a value for the password that is null.
Token:VUdWeVptOXliV0Z1WTJWVVpYTjBPaXRaYWtOU1lsQklhV0ZaU1hNd2VsSjBPRWN5Uld4UmRIWlJhejA9
after decoding this we are getting performancetest:null
Would you kindly suggest how the passwords are concealed?
this.authService.onLogin
.pipe(
filter(() => this.alfrescoApiService.getInstance()?.isEcmLoggedIn()),
take(1),
switchMap(() => this.discoveryApi.getEcmProductInfo()),
)
.subscribe((info: RepositoryInfo) => {
this.discoveryApi.ecmProductInfo$.next(info);
});