getsavedcards
This commit is contained in:
@@ -293,7 +293,28 @@ module.exports = (app, url) => {
|
||||
* app.post("usertransportlist");
|
||||
* app.post("usertransportprofile");
|
||||
* app.post("getdashcarddata");
|
||||
* app.post("loadsavedcards");
|
||||
*/
|
||||
/**
|
||||
* @swagger
|
||||
* /v1/user/loadsavedcards:
|
||||
* get:
|
||||
* tags:
|
||||
* - Users
|
||||
* summary: Retrieve a single JSONPlaceholder user.
|
||||
* description: Retrieve a single JSONPlaceholder user. Can be used to populate a user profile when prototyping or testing an API.
|
||||
* security:
|
||||
* - bearerAuth: []
|
||||
* responses:
|
||||
* 200:
|
||||
* description: A single user.
|
||||
* content:
|
||||
* application/json:
|
||||
* schema:
|
||||
* type: object
|
||||
* $ref: '#/components/schemas/Member'
|
||||
*/
|
||||
app.get(url + "user/loadsavedcards", auth, memberController.loadSavedCards);
|
||||
/*
|
||||
* app.post("savedashcard");
|
||||
* app.post("saveuserbudget");
|
||||
* app.post("resetpass");
|
||||
|
||||
Reference in New Issue
Block a user