mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
940 B
940 B
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
App Config Pipe | v2.4.0 | Active | 2018-05-24 |
App Config Pipe
Retrieves values from the application configuration file directly.
Basic usage
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig }}">
</adf-login>
Details
Fallback values
You can use the pipe parameter to pass a fallback value which will be used if the property name is not found:
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig:'Fallback Text' }}">
</adf-login>
Chaining with other pipes
You can also chain values with other pipes such as the translation pipe:
<adf-login
copyrightText="{{ 'application.copyright' | adfAppConfig | translate }}">
</adf-login>