diff --git a/pkg/customization/customize.go b/pkg/customization/customize.go index f7b3550..e6f10f2 100644 --- a/pkg/customization/customize.go +++ b/pkg/customization/customize.go @@ -40,6 +40,13 @@ type ( MetricsAllowedSubnets []string `json:"-" yaml:"metricsAllowedSubnets"` OverlayFSPath string `json:"-" yaml:"overlayFSPath"` UseFormalLanguage bool `json:"-" yaml:"useFormalLanguage"` + + FooterLinks []FooterLink `json:"footerLinks,omitempty" yaml:"footerLinks"` + } + + FooterLink struct { + Name string `json:"name" yaml:"name"` + URL string `json:"url" yaml:"url"` } ) diff --git a/src/app.vue b/src/app.vue index 05f0c04..3443707 100644 --- a/src/app.vue +++ b/src/app.vue @@ -24,13 +24,24 @@