Skip to content

Commit 8089471

Browse files
committed
fix(node): summary
1 parent fa9d164 commit 8089471

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

lavcode-node/src/actions/auth/_.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { GetTokenDto } from "./dtos/get-token.dto";
1010
@Open
1111
@V()
1212
.Tags("auth")
13-
.Description("Get login token")
13+
.Summary("Get login token")
1414
.Response(200, GetTokenDto)
1515
.ResponseDescription(200, "success")
1616
export default class extends Action {

lavcode-node/src/actions/auth/_.head.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { V } from "@ipare/validator";
33

44
@V()
55
.Tags("auth")
6-
.Description("Verify token")
6+
.Summary("Verify token")
77
.ResponseDescription(204, "success")
88
.Security({
99
Bearer: [],

lavcode-node/src/actions/folder/^id.delete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { CollectionService } from "../../services/collection.service";
77

88
@V()
99
.Tags("folder")
10-
.Description("Delete a folder")
10+
.Summary("Delete a folder")
1111
.ResponseDescription(204, "success")
1212
.Security({
1313
Bearer: [],

lavcode-node/src/actions/folder/^id.put.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { FolderService } from "./services/folder.service";
99

1010
@V()
1111
.Tags("folder")
12-
.Description("Update folder")
12+
.Summary("Update folder")
1313
.Response(200, GetFolderDto)
1414
.ResponseDescription(200, "success")
1515
.Security({

lavcode-node/src/actions/folder/_.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { FolderService } from "./services/folder.service";
66

77
@V()
88
.Tags("folder")
9-
.Description("Get all folders")
9+
.Summary("Get all folders")
1010
.Response(200, [GetFolderDto])
1111
.ResponseDescription(200, "success")
1212
.Security({

lavcode-node/src/actions/folder/_.post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { FolderService } from "./services/folder.service";
99

1010
@V()
1111
.Tags("folder")
12-
.Description("Create folder")
12+
.Summary("Create folder")
1313
.Response(200, GetFolderDto)
1414
.ResponseDescription(200, "success")
1515
.Security({

lavcode-node/src/actions/password/^id.delete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { CollectionService } from "../../services/collection.service";
66

77
@V()
88
.Tags("password")
9-
.Description("Delete a password")
9+
.Summary("Delete a password")
1010
.ResponseDescription(204, "success")
1111
.Security({
1212
Bearer: [],

lavcode-node/src/actions/password/^id.put.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { PasswordService } from "./services/password.service";
99

1010
@V()
1111
.Tags("password")
12-
.Description("Update password")
12+
.Summary("Update password")
1313
.Response(200, GetPasswordDto)
1414
.ResponseDescription(200, "success")
1515
.Security({

lavcode-node/src/actions/password/_.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PasswordService } from "./services/password.service";
77

88
@V()
99
.Tags("password")
10-
.Description("Get passwords")
10+
.Summary("Get passwords")
1111
.Response(200, [GetPasswordDto])
1212
.ResponseDescription(200, "success")
1313
.Security({

lavcode-node/src/actions/password/_.post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { PasswordService } from "./services/password.service";
99

1010
@V()
1111
.Tags("password")
12-
.Description("Create password")
12+
.Summary("Create password")
1313
.Response(200, GetPasswordDto)
1414
.ResponseDescription(200, "success")
1515
.Security({

0 commit comments

Comments
 (0)