Skip to content

Commit

Permalink
proper service used
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnisLielturks committed Apr 26, 2024
1 parent 8539392 commit e6de75f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rootxpdev/medusa-email-plugin",
"version": "0.4.7",
"version": "0.4.8",
"description": "Send emails when certain actions happens in medusa store",
"main": "index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/services/emails.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
BaseService,
BaseNotificationService,
Logger,
OrderService,
} from "medusa-interfaces";
Expand All @@ -15,7 +15,7 @@ interface EmailConfig {
smtpPassword: string;
}

class EmailsService extends BaseService {
class EmailsService extends BaseNotificationService {
static identifier = 'emails';
static is_installed = true;

Expand Down

0 comments on commit e6de75f

Please sign in to comment.