2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

FEATURE: makes reports loadable in bulk (#6309)

This commit is contained in:
Joffrey JAFFEUX 2018-08-24 15:28:01 +02:00 committed by GitHub
parent 52a2a1f0d8
commit 82dcc5cbfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 388 additions and 342 deletions

View file

@ -138,7 +138,7 @@ componentTest("rate limited", {
};
// prettier-ignore
server.get("/admin/reports/signups_rate_limited", () => { //eslint-disable-line
server.get("/admin/reports/bulk", () => { //eslint-disable-line
return response({"errors":["Youve performed this action too many times. Please wait 10 seconds before trying again."],"error_type":"rate_limit","extras":{"wait_seconds":10}});
});
},