Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup Identity #443

Merged
merged 18 commits into from
Feb 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update postman
  • Loading branch information
fretje committed Feb 7, 2022
commit 709e82a352b91cc6632a99e1ccc8e289814be67b
17 changes: 9 additions & 8 deletions postman/dotnet.webapi.boilerplate.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
}
},
"url": {
"raw": "{{url}}/profile",
"raw": "{{url}}/users",
"host": [
"{{url}}"
],
"path": [
"profile"
"users"
]
}
},
Expand Down Expand Up @@ -159,11 +159,12 @@
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/profile",
"raw": "{{url}}/personal/profile",
"host": [
"{{url}}"
],
"path": [
"personal",
"profile"
]
}
Expand All @@ -177,7 +178,7 @@
"header": [],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"permission\":\"Permissions.Brands.BJ\",\r\n \"enabled\":true\r\n }\r\n]",
"raw": "{\r\n \"RoleId\": \"17c9fb87-a92f-404d-b2e4-30ce88f5f6b6\",\r\n \"Permissions\": [\"Permissions.Brands.BJ\"]\r\n}",
"options": {
"raw": {
"language": "json"
Expand Down Expand Up @@ -247,12 +248,12 @@
}
},
"url": {
"raw": "{{url}}/profile/forgot-password",
"raw": "{{url}}/users/forgot-password",
"host": [
"{{url}}"
],
"path": [
"profile",
"users",
"forgot-password"
]
}
Expand Down Expand Up @@ -280,12 +281,12 @@
}
},
"url": {
"raw": "{{url}}/profile/reset-password",
"raw": "{{url}}/users/reset-password",
"host": [
"{{url}}"
],
"path": [
"profile",
"users",
"reset-password"
]
}
Expand Down