Created
March 5, 2020 12:07
-
-
Save ShaileshPrajapati-BTC/54c6f5b16690e6d9e0f6272f797b469d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// list for employee /employee | |
{ | |
page: 1 | |
gardenId: "51" | |
limit: 10 | |
} | |
// list for access for user /employee/access | |
{ | |
id: 42 | |
} | |
// to save access /employee/save-access | |
{ | |
userId: 42, | |
useraccess: [ | |
{ | |
"gardenId": 51, | |
"userId": 42, | |
"gardenuseraccesses": [ | |
{ | |
"type": "sheet", | |
"access": "green-leaf", | |
"days": "0" | |
}, | |
{ | |
"type": "sheet", | |
"access": "green-leaf-own", | |
"days": "0" | |
}, | |
{ | |
"type": "report", | |
"access": "report-green-leaf", | |
"days": 0 | |
}, | |
{ | |
"type": "report", | |
"access": "report-green-leaf-own", | |
"days": 0 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment