Skip to content

Commit

Permalink
deleting some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanAnquetil committed Sep 12, 2024
1 parent c215a85 commit 792e831
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"jest": "^29.7.0",
"prettier": "3.3.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.4"
Expand Down
2 changes: 1 addition & 1 deletion api/src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class AuthController {
return {
message: "L'authentification est validée",
data: response,
token: token ?? undefined, // Use undefined if no token is generated because use hasn't a premium subscription.
token: token ?? undefined,
};
}
}
2 changes: 1 addition & 1 deletion api/src/members/entities/member.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class Member {
arm_user_status!: number;

@Column({ type: "int", nullable: false, default: 0 })
arm_secondary_status!: number; // Assurez-vous que ceci est un number
arm_secondary_status!: number;

@Column({ type: "text", nullable: true })
arm_user_plan_ids?: string;
Expand Down
2 changes: 1 addition & 1 deletion api/src/posts/tests/posts.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PostsService } from '../posts.service';
import { PostNews } from '../entities/post-news.entity';
import { Repository, EntityManager, UpdateResult, DeleteResult } from 'typeorm';
import { getRepositoryToken } from '@nestjs/typeorm';
import { NotFoundException, InternalServerErrorException } from '@nestjs/common';
import { NotFoundException } from '@nestjs/common';
import { CreatePostDto } from '../dto/create-post.dto';
import { UpdatePostDto } from '../dto/update-post.dto';
import { ElementorDataService } from '../utils/extract_elementor_data';
Expand Down

0 comments on commit 792e831

Please sign in to comment.