We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1b1c02 + 5369974 commit 4328eefCopy full SHA for 4328eef
src/modules/config/jwt-secret.ts
@@ -1 +1,2 @@
1
-export const JWT_SECRET = '';
+export const JWT_SECRET =
2
+ 'jW4gVXqP0P8aCyjJmZcO4Q5hQ3rR3uAFpN+LtTGBQz9Bx6bnM8XLVmhJpg0FZcHx';
src/modules/posts/posts.controller.ts
@@ -32,7 +32,7 @@ export class PostsController {
32
}
33
34
@Get(':slug')
35
- async getPostBySlug(@Param('slug') slug: string): Promise<PostModel> {
+ async findPostBySlug(@Param('slug') slug: string): Promise<PostModel> {
36
return this.postService.findPostBySlug(slug);
37
38
0 commit comments