mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-3775] add missing plugin configuration (#1820)
* add missing plugin files, update readme * add missing providers * about and settings extensions * leave only about
This commit is contained in:
@@ -2,11 +2,10 @@
|
||||
"$schema": "../../../extension.schema.json",
|
||||
"$id": "9a635542-d87a-4558-ae64-ffa199d1a364",
|
||||
"$version": "0.0.10",
|
||||
"$name": "keensoft.aos.plugin",
|
||||
"$name": "Edit in Office",
|
||||
"$description": "Extension that provides Office Edit Online Action",
|
||||
"$vendor": "Keensoft",
|
||||
"$license": "Apache-2.0",
|
||||
"$runtime": "1.6.0",
|
||||
"$vendor": "Alfresco Software, Ltd.",
|
||||
"$license": "LGPL-3.0",
|
||||
|
||||
"actions": [
|
||||
{
|
||||
|
@@ -26,16 +26,13 @@
|
||||
import { ExtensionService, provideExtensionConfig } from '@alfresco/adf-extensions';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { EffectsModule } from '@ngrx/effects';
|
||||
|
||||
import { AosEditOnlineService } from './aos-extension.service';
|
||||
import { AosEffects } from './effects/aos.effects';
|
||||
|
||||
import { canOpenWithOffice } from './evaluators';
|
||||
import { TranslationService } from '@alfresco/adf-core';
|
||||
import { canOpenWithOffice } from './evaluators';
|
||||
|
||||
@NgModule({
|
||||
imports: [EffectsModule.forFeature([AosEffects])],
|
||||
providers: [AosEditOnlineService, provideExtensionConfig(['aos.plugin.json'])]
|
||||
providers: [provideExtensionConfig(['aos.plugin.json'])]
|
||||
})
|
||||
export class AosExtensionModule {
|
||||
constructor(extensions: ExtensionService, translation: TranslationService) {
|
||||
|
Reference in New Issue
Block a user