Add support for Enterprise logos in notifications
This commit is contained in:
parent
6fe579119b
commit
84ad1d83e1
2 changed files with 8 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Reference in a new issue