remove 'external login' until it can be properly implemented
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
import { html, customElement } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
|
||||
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
|
||||
|
||||
@customElement('umb-external-login-providers-user-profile-app')
|
||||
export class UmbExternalLoginProvidersUserProfileAppElement extends UmbLitElement {
|
||||
render() {
|
||||
return html`
|
||||
<uui-box>
|
||||
<b slot="headline">External login providers</b>
|
||||
<umb-extension-slot id="externalLoginProviders" type="externalLoginProvider"></umb-extension-slot>
|
||||
</uui-box>
|
||||
`;
|
||||
}
|
||||
|
||||
static styles = [UmbTextStyles];
|
||||
}
|
||||
|
||||
export default UmbExternalLoginProvidersUserProfileAppElement;
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
'umb-external-login-providers-user-profile-app': UmbExternalLoginProvidersUserProfileAppElement;
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
import type { ManifestUserProfileApp } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const userProfileApps: Array<ManifestUserProfileApp> = [
|
||||
{
|
||||
type: 'userProfileApp',
|
||||
alias: 'Umb.UserProfileApp.CurrentUser.ExternalLoginProviders',
|
||||
name: 'External Login Providers User Profile App',
|
||||
element: () => import('./external-login-providers-user-profile-app.element.js'),
|
||||
weight: 700,
|
||||
meta: {
|
||||
label: 'External Login Providers User Profile App',
|
||||
pathname: 'externalLoginProviders',
|
||||
},
|
||||
},
|
||||
];
|
||||
export const manifests = [...userProfileApps];
|
||||
@@ -1,6 +1,5 @@
|
||||
import { manifest as actionDefaultKindManifest } from './action/default.kind.js';
|
||||
import { manifests as modalManifests } from './modals/manifests.js';
|
||||
import { manifests as externalLoginProviderManifests } from './external-login/manifests.js';
|
||||
import { manifests as historyManifests } from './history/manifests.js';
|
||||
import { manifests as mfaLoginProviderManifests } from './mfa-login/manifests.js';
|
||||
import { manifests as profileManifests } from './profile/manifests.js';
|
||||
@@ -31,7 +30,6 @@ export const headerApps: Array<ManifestTypes> = [
|
||||
|
||||
export const manifests = [
|
||||
actionDefaultKindManifest,
|
||||
...externalLoginProviderManifests,
|
||||
...headerApps,
|
||||
...historyManifests,
|
||||
...mfaLoginProviderManifests,
|
||||
|
||||
Reference in New Issue
Block a user