Skip to content

Commit

Permalink
chore: fixed comments, close #255
Browse files Browse the repository at this point in the history
  • Loading branch information
cuma.duran committed Jul 4, 2023
1 parent 318ec8c commit 78a9dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/src/modules/challenge/challenge.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import config from '@core/config/configuration';
import { IDataService } from '@core/data/services/data.service';
import {CodexMailOptions} from "@core/data/services/mail.service";
import { CodexMailOptions } from "@core/data/services/mail.service";
import { BadRequestException, Injectable, Logger } from '@nestjs/common';
import { Interval } from '@nestjs/schedule';
import { DateTime } from 'luxon';
Expand Down
4 changes: 2 additions & 2 deletions server/src/modules/providers/mail/mail.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { MailService } from './mail.service';
MailerModule.forRoot({
transport: {
host: config.mail.host,
port: Number(config.mail.port) || 465,
secure: Boolean(config.mail.secure) || true,
port: Number(config.mail.port),
secure: Boolean(config.mail.secure),
auth: {
user: config.mail.user,
pass: config.mail.password,
Expand Down

0 comments on commit 78a9dcf

Please sign in to comment.