mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 13:51:09 +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:
@ -5,9 +5,8 @@ describe OneboxController do
|
||||
let(:url) { "http://google.com" }
|
||||
|
||||
it "requires the user to be logged in" do
|
||||
expect do
|
||||
get :show, params: { url: url }, format: :json
|
||||
end.to raise_error(Discourse::NotLoggedIn)
|
||||
get :show, params: { url: url }, format: :json
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
|
||||
describe "logged in" do
|
||||
|
Reference in New Issue
Block a user