Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Before creating a Property Action, make sure you are familiar with the [Extensio

Here is how you can register a new Property Action:
```
import { extensionRegistry } from '@umbraco-cms/extension-registry';
import { MyEntityAction } from './my-property-action.api';
import { umbExtensionsRegistry } from '@umbraco-cms/backoffice/extension-registry';
const manifest =
{
type: 'propertyAction',
Expand All @@ -40,7 +40,7 @@ const manifest =
}
};
extensionRegistry.register(manifest);
umbExtensionsRegistry.register(manifest);
```
### Creating the Property Action Class

Expand All @@ -62,4 +62,4 @@ export class MyPropertyAction extends UmbPropertyActionBase {
}
}
export { MyPropertyAction as api };
```
```