File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" )
1616export default class extends Action {
Original file line number Diff line number Diff 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 : [ ] ,
Original file line number Diff line number Diff 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 : [ ] ,
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 : [ ] ,
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 ( {
You can’t perform that action at this time.
0 commit comments