Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
nicot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3rdeye
nicot
Commits
c3837127
Commit
c3837127
authored
Jul 16, 2022
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
readme
parent
d2e4f7ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
README.md
README.md
+30
-0
No files found.
README.md
View file @
c3837127
...
@@ -95,3 +95,33 @@ export class UserController {
...
@@ -95,3 +95,33 @@ export class UserController {
}
}
}
}
```
```
## Return message
Return data of all APIs are in the following format, with proper OpenAPI documentation:
```
ts
export
interface
ReturnMessage
<
T
>
{
statusCode
:
number
;
message
:
string
;
success
:
boolean
;
data
:
T
;
}
```
You may also create a Dto class like this by the following way:
```
ts
export
class
UserReturnMessage
extends
ReturnMessageDto
(
User
)
{}
```
With result into the following class, also with proper OpenAPI documentation:
```
ts
export
class
UserReturnMessage
{
statusCode
:
number
;
message
:
string
;
success
:
boolean
;
data
:
User
;
}
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment