web: cleanup default footer links

This commit is contained in:
Jens Langhammer 2022-03-01 15:27:21 +00:00
parent 6283fedcd9
commit 7bdd32506e
2 changed files with 7 additions and 15 deletions

View File

@ -63,11 +63,7 @@ disable_startup_analytics: false
avatars: env://AUTHENTIK_AUTHENTIK__AVATARS?gravatar avatars: env://AUTHENTIK_AUTHENTIK__AVATARS?gravatar
geoip: "./GeoLite2-City.mmdb" geoip: "./GeoLite2-City.mmdb"
footer_links: footer_links: []
- name: Documentation
href: https://goauthentik.io/docs/?utm_source=authentik
- name: authentik Website
href: https://goauthentik.io/?utm_source=authentik
default_user_change_name: true default_user_change_name: true
default_user_change_email: true default_user_change_email: true

View File

@ -418,16 +418,12 @@ export class FlowExecutor extends LitElement implements StageHost {
</li>`; </li>`;
}), }),
)} )}
${this.tenant?.brandingTitle != "authentik" <li>
? html` <a
<li> href="https://goauthentik.io?utm_source=authentik&amp;utm_medium=flow"
<a >${t`Powered by authentik`}</a
href="https://goauthentik.io?utm_source=authentik&amp;utm_medium=flow" >
>${t`Powered by authentik`}</a </li>
>
</li>
`
: html``}
${this.challenge?.flowInfo?.background?.startsWith( ${this.challenge?.flowInfo?.background?.startsWith(
"/static", "/static",
) )