mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
713 B
713 B
Added, Status
Added | Status |
---|---|
v2.4.0 | Active |
App Config Pipe
Retrieves values from the application configuration file directly.
Examples
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig }}">
</adf-login>
Fallback values
You can use pipe parameters to pass fallback value:
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig:'Fallback Text' }}">
</adf-login>
Chaining with other pipes
You can also chain values with other pipes, for example translation
one:
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig | translate }}">
</adf-login>