Skip to content

Commit

Permalink
feat: 把report迁移到src下 (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
luch1994 committed Oct 8, 2024
1 parent 039d634 commit f73bf6f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
import 'scripts/run-report';
import './report';

async function bootstrap() {
const PORT = process.env.PORT || 3000;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ describe('ResponseSchemaService', () => {
{
$set: {
isDeleted: true,
updatedAt: new Date(),
updatedAt: expect.any(Date),
},
},
);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion web/src/management/api/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const getUserInfo = () => {
}
/** 获取密码强度 */
export const getPasswordStrength = (password) => {
return axios.get('/auth/register/password/strength', {
return axios.get('/auth/password/strength', {
params: {
password
}
Expand Down

0 comments on commit f73bf6f

Please sign in to comment.