Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/modules/config/jwt-secret.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export const JWT_SECRET = '';
export const JWT_SECRET =
'jW4gVXqP0P8aCyjJmZcO4Q5hQ3rR3uAFpN+LtTGBQz9Bx6bnM8XLVmhJpg0FZcHx';
2 changes: 1 addition & 1 deletion src/modules/posts/posts.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class PostsController {
}

@Get(':slug')
async getPostBySlug(@Param('slug') slug: string): Promise<PostModel> {
async findPostBySlug(@Param('slug') slug: string): Promise<PostModel> {
return this.postService.findPostBySlug(slug);
}
}
Loading