use + addressing for enterprise feedback emails

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-12-16 22:39:16 +01:00
parent 0873b4a446
commit 938f6fe439
No known key found for this signature in database
7 changed files with 17 additions and 7 deletions

View File

@ -150,7 +150,9 @@ export class EnterpriseLicenseListPage extends TablePage<License> {
return html` return html`
<div class="pf-c-banner pf-m-info"> <div class="pf-c-banner pf-m-info">
${msg("Enterprise is in preview.")} ${msg("Enterprise is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/enterprise@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div> </div>
<section class="pf-c-page__main-section pf-m-no-padding-bottom"> <section class="pf-c-page__main-section pf-m-no-padding-bottom">
<div <div

View File

@ -85,7 +85,7 @@ export class RoleListPage extends TablePage<Role> {
</ak-page-header> </ak-page-header>
<div class="pf-c-banner pf-m-info"> <div class="pf-c-banner pf-m-info">
${msg("RBAC is in preview.")} ${msg("RBAC is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/rbac@goauthentik.io">${msg("Send us feedback!")}</a>
</div> </div>
<section class="pf-c-page__main-section pf-m-no-padding-mobile"> <section class="pf-c-page__main-section pf-m-no-padding-mobile">
<div class="pf-c-card">${this.renderTable()}</div> <div class="pf-c-card">${this.renderTable()}</div>

View File

@ -89,7 +89,7 @@ export class RoleViewPage extends AKElement {
} }
return html`<div class="pf-c-banner pf-m-info"> return html`<div class="pf-c-banner pf-m-info">
${msg("RBAC is in preview.")} ${msg("RBAC is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/rbac@goauthentik.io">${msg("Send us feedback!")}</a>
</div> </div>
<ak-tabs> <ak-tabs>
<section <section

View File

@ -85,7 +85,9 @@ export class AuthenticatorMobileStageForm extends ModelForm<AuthenticatorMobileS
return html` return html`
<div class="pf-c-banner pf-m-info" slot="above-form"> <div class="pf-c-banner pf-m-info" slot="above-form">
${msg("Mobile stage is in preview.")} ${msg("Mobile stage is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/mobile_authenticator@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div> </div>
<div class="form-help-text"> <div class="form-help-text">
${msg( ${msg(

View File

@ -407,7 +407,9 @@ export class UserViewPage extends WithCapabilitiesConfig(AKElement) {
> >
<div class="pf-c-banner pf-m-info"> <div class="pf-c-banner pf-m-info">
${msg("RBAC is in preview.")} ${msg("RBAC is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/rbac@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div> </div>
<section class="pf-c-page__main-section pf-m-no-padding-mobile"> <section class="pf-c-page__main-section pf-m-no-padding-mobile">
<div class="pf-l-grid pf-m-gutter"> <div class="pf-l-grid pf-m-gutter">

View File

@ -61,7 +61,9 @@ export class ObjectPermissionModal extends AKElement {
<span slot="header"> ${msg("Update Permissions")} </span> <span slot="header"> ${msg("Update Permissions")} </span>
<div class="pf-c-banner pf-m-info" slot="above-form"> <div class="pf-c-banner pf-m-info" slot="above-form">
${msg("RBAC is in preview.")} ${msg("RBAC is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/rbac@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div> </div>
<ak-rbac-object-permission-modal-form <ak-rbac-object-permission-modal-form
slot="form" slot="form"

View File

@ -34,7 +34,9 @@ export class ObjectPermissionPage extends AKElement {
return html`${this.showBanner return html`${this.showBanner
? html`<div class="pf-c-banner pf-m-info"> ? html`<div class="pf-c-banner pf-m-info">
${msg("RBAC is in preview.")} ${msg("RBAC is in preview.")}
<a href="mailto:hello@goauthentik.io">${msg("Send us feedback!")}</a> <a href="mailto:hello+feature/rbac@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div>` </div>`
: html``} : html``}
<ak-tabs pageIdentifier="permissionPage"> <ak-tabs pageIdentifier="permissionPage">