Browse Source
Merge pull request #7064 from Budibase/fix/overview-redirect
Fix for redirect in overview screen
pull/7082/head
Peter Clement
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
packages/worker/src/api/routes/global/users.js
|
|
|
@ -64,7 +64,7 @@ router |
|
|
|
.post("/api/global/users/search", builderOrAdmin, controller.search) |
|
|
|
.delete("/api/global/users/:id", adminOnly, controller.destroy) |
|
|
|
.post("/api/global/users/bulkDelete", adminOnly, controller.bulkDelete) |
|
|
|
.get("/api/global/users/count/:appId", adminOnly, controller.countByApp) |
|
|
|
.get("/api/global/users/count/:appId", builderOrAdmin, controller.countByApp) |
|
|
|
.get("/api/global/roles/:appId") |
|
|
|
.post( |
|
|
|
"/api/global/users/invite", |
|
|
|
|