Skip to content

Commit

Permalink
refactor(invites): rename invite-nudge-webhook to invite-nudge
Browse files Browse the repository at this point in the history
  • Loading branch information
rifont committed Jun 5, 2024
1 parent 4b6599b commit 2ad7cf8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/app/invites/invites.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import { ApiExcludeController, ApiTags } from '@nestjs/swagger';
import { ThrottlerCost } from '../rate-limiting/guards';
import { ApiCommonResponses } from '../shared/framework/response.decorator';
import { UserAuthGuard } from '../auth/framework/user.auth.guard';
import { InviteNudgeWebhookCommand } from './usecases/invite-nudge-webhook/invite-nudge-command';
import { InviteNudgeWebhook } from './usecases/invite-nudge-webhook/invite-nudge-usecase';
import { InviteNudgeWebhookCommand } from './usecases/invite-nudge/invite-nudge.command';
import { InviteNudgeWebhook } from './usecases/invite-nudge/invite-nudge.usecase';

@UseInterceptors(ClassSerializerInterceptor)
@ApiCommonResponses()
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/app/invites/usecases/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { GetInvite } from './get-invite/get-invite.usecase';
import { BulkInvite } from './bulk-invite/bulk-invite.usecase';
import { InviteMember } from './invite-member/invite-member.usecase';
import { ResendInvite } from './resend-invite/resend-invite.usecase';
import { InviteNudgeWebhook } from './invite-nudge-webhook/invite-nudge-usecase';
import { InviteNudgeWebhook } from './invite-nudge/invite-nudge.usecase';

export const USE_CASES = [AcceptInvite, GetInvite, BulkInvite, InviteMember, ResendInvite, InviteNudgeWebhook];
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { GetFeatureFlag, GetFeatureFlagCommand, createHash } from '@novu/applica
import { FeatureFlagsKeysEnum } from '@novu/shared';
import axios from 'axios';

import { InviteNudgeWebhookCommand } from './invite-nudge-command';
import { InviteNudgeWebhookCommand } from './invite-nudge.command';

const axiosInstance = axios.create();

Expand Down

0 comments on commit 2ad7cf8

Please sign in to comment.