UNPKG

vendure-simplified-collections-plugin

Version:

This `vendure` plugin allows you to maintain a two way relation between products and collections. `Vendure` by default only allows you to manage relations between your inventory and collections from the side of collections only. It complements this featur

11 lines 510 B
import { NgModule } from '@angular/core'; import { SharedModule,registerFormInputComponent } from '@vendure/admin-ui/core'; import { ProductCollectionCustomFieldComponent } from './product-collection-custom-field.component'; @NgModule({ imports: [SharedModule], declarations: [ProductCollectionCustomFieldComponent], providers: [ registerFormInputComponent('product-collections', ProductCollectionCustomFieldComponent), ] }) export class SimplifiedCollectionsSharedExtensionModule {}