Skip to content

Commit

Permalink
Merge pull request #1 from abhijitkane/feature/add-greeting
Browse files Browse the repository at this point in the history
Added the actual greeting for users
  • Loading branch information
abhijitkane authored Nov 5, 2021
2 parents b26a827 + 847bd66 commit 5ffed3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions postman/schemas/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ paths:
properties:
message:
type: string
maxLength: 200
default:
description: Unexpected error
content:
Expand Down
2 changes: 1 addition & 1 deletion services/greeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
// throw new Error('<Error message>'); // this will result in a 500

var data = {
"message": "<string>",
"message": "Welcome to the API-first world!",
},
status = '200';

Expand Down

0 comments on commit 5ffed3d

Please sign in to comment.