add context to filename

This commit is contained in:
Mads Rasmussen
2023-11-10 22:01:26 +01:00
parent a3817b51b6
commit 6827b1ae8c
4 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,4 @@
import { IUmbAuth } from './auth.interface.js';
import { IUmbAuth } from './auth.context.interface.js';
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api';
export const UMB_AUTH_CONTEXT = new UmbContextToken<IUmbAuth>(
'UmbAuthContext'
);
export const UMB_AUTH_CONTEXT = new UmbContextToken<IUmbAuth>('UmbAuthContext');

View File

@@ -1,4 +1,4 @@
import { IUmbAuth } from './auth.interface.js';
import { IUmbAuth } from './auth.context.interface.js';
import { UmbAuthFlow } from './auth-flow.js';
import { UMB_AUTH_CONTEXT } from './auth.context.token.js';
import { UmbBaseController, UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';

View File

@@ -1,3 +1,3 @@
export * from './auth.interface.js';
export * from './auth.context.interface.js';
export * from './auth.context.js';
export * from './auth.context.token.js';