Merge pull request #266 from YangFong/fix/typo

fix typo
This commit is contained in:
fantasticit 2024-03-29 22:26:09 +08:00 committed by GitHub
commit 3665aeea36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ export class UserService {
@InjectRepository(UserEntity)
private readonly userRepo: Repository<UserEntity>,
private readonly confifgService: ConfigService,
private readonly configService: ConfigService,
@Inject(forwardRef(() => JwtService))
private readonly jwtService: JwtService,
@ -60,7 +60,7 @@ export class UserService {
return;
}
const config = await this.confifgService.get('server.admin');
const config = await this.configService.get('server.admin');
if (!config.name || !config.password || !config.email) {
throw new Error(`请指定名称、密码和邮箱`);
@ -225,7 +225,7 @@ export class UserService {
const res = instanceToPlain(existUser) as IUser;
const token = this.jwtService.sign(res);
const domain = this.confifgService.get('client.siteDomain');
const domain = this.configService.get('client.siteDomain');
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const expiresIn = this.jwtService.decode(token, { complete: true }).payload.exp;
@ -233,7 +233,7 @@ export class UserService {
}
async logout() {
const domain = this.confifgService.get('client.siteDomain');
const domain = this.configService.get('client.siteDomain');
return { token: '', domain };
}