Add support for Enterprise logos in notifications

This commit is contained in:
Sam Chow 2018-05-07 11:11:33 -04:00
parent 6fe579119b
commit 84ad1d83e1
2 changed files with 8 additions and 4 deletions

View file

@ -71,8 +71,12 @@ angular.module('quay').factory('Config', ['Features', function(Features) {
return value;
};
config.getEnterpriseLogo = function() {
config.getEnterpriseLogo = function(defaultValue) {
if (!config.ENTERPRISE_LOGO_URL) {
if (defaultValue) {
return defaultValue;
}
if (Features.BILLING) {
return '/static/img/quay-horizontal-color.svg';
} else {