From 73e964b42f08c50317f2916880594df9555c70b5 Mon Sep 17 00:00:00 2001 From: Yesha Mavani Date: Wed, 6 Nov 2024 18:13:06 +0530 Subject: [PATCH] feat(mixin): make model and repository customizable update the docs GH-121 --- README.md | 2 +- docs/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 766edee..0957615 100644 --- a/README.md +++ b/README.md @@ -409,7 +409,7 @@ Also add the following to your application.ts file to bind the Sequelize reposit ```ts import {AuditLog} from '@sourceloop/auidt-log/'; -import {AuditLogRepository} from '@sourceloop/auidt-log/sequelize'; +import {AuditLogRepository} from '@sourceloop/audit-log/sequelize'; this.repositories = [AuditLogRepository]; ``` diff --git a/docs/README.md b/docs/README.md index 766edee..0957615 100644 --- a/docs/README.md +++ b/docs/README.md @@ -409,7 +409,7 @@ Also add the following to your application.ts file to bind the Sequelize reposit ```ts import {AuditLog} from '@sourceloop/auidt-log/'; -import {AuditLogRepository} from '@sourceloop/auidt-log/sequelize'; +import {AuditLogRepository} from '@sourceloop/audit-log/sequelize'; this.repositories = [AuditLogRepository]; ```