feat(editor): add provider for base adapter (#11169)

This commit is contained in:
Saul-Mirone
2025-03-25 12:09:23 +00:00
parent df057b4c12
commit e84c60f53d
18 changed files with 50 additions and 55 deletions
@@ -131,8 +131,8 @@ export const AttachmentAdapterFactoryIdentifier =
export const AttachmentAdapterFactoryExtension: ExtensionType = {
setup: di => {
di.addImpl(AttachmentAdapterFactoryIdentifier, () => ({
get: (job: Transformer) => new AttachmentAdapter(job),
di.addImpl(AttachmentAdapterFactoryIdentifier, provider => ({
get: (job: Transformer) => new AttachmentAdapter(job, provider),
}));
},
};