mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: return 429 when admin api key is limited on admin route
This also handles a general case where exceptions leak out prior to being handled by the application controller
This commit is contained in:
parent
dcbaf2f213
commit
49ed382c2a
39 changed files with 322 additions and 349 deletions
|
@ -10,9 +10,8 @@ describe WizardController do
|
|||
end
|
||||
|
||||
it 'needs you to be logged in' do
|
||||
expect do
|
||||
get :index, format: :json
|
||||
end.to raise_error(Discourse::NotLoggedIn)
|
||||
get :index, format: :json
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
|
||||
it "raises an error if you aren't an admin" do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue