Skip to content
Merged
1 change: 1 addition & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,7 @@ export default {
noDiff: 'There are no differences between the current (draft) version and the selected version.',
contentRolledBack: 'Content has been rolled back',
documentRolledBack: 'Document has been rolled back',
elementRolledBack: 'Element has been rolled back',
headline: 'Select a version to compare with the current version',
htmlHelp:
'This displays the selected version as HTML, if you wish to see the difference between 2 versions at the same time, use the diff view',
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { UmbElementAuditLogRepository } from './repository/index.js';
export * from './repository/index.js';

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { UMB_ELEMENT_AUDIT_LOG_REPOSITORY_ALIAS } from '../repository/constants.js';
import { UMB_ELEMENT_WORKSPACE_ALIAS } from '../../workspace/constants.js';
import { UMB_WORKSPACE_CONDITION_ALIAS } from '@umbraco-cms/backoffice/workspace';

export const manifests: Array<UmbExtensionManifest> = [
{
type: 'workspaceInfoApp',
kind: 'auditLog',
name: 'Element History Workspace Info App',
alias: 'Umb.WorkspaceInfoApp.Element.History',
element: () => import('./element-history-workspace-info-app.element.js'),
weight: 80,
meta: {
auditLogRepositoryAlias: UMB_ELEMENT_AUDIT_LOG_REPOSITORY_ALIAS,
},
conditions: [
{
alias: UMB_WORKSPACE_CONDITION_ALIAS,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { manifests as infoAppManifests } from './info-app/manifests.js';
import { manifests as repositoryManifests } from './repository/manifests.js';

export const manifests: Array<UmbExtensionManifest> = [...infoAppManifests];
export const manifests: Array<UmbExtensionManifest> = [...infoAppManifests, ...repositoryManifests];
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const UMB_ELEMENT_AUDIT_LOG_REPOSITORY_ALIAS = 'Umb.Repository.Element.AuditLog';
Loading
Loading