Преглед изворни кода

Fix #3462 - Require authentication for search API (#4155)

This makes it consistent with /api/v1/accounts/search and
previous behaviour has been an oversight.
master
Eugen Rochko пре 6 година
committed by GitHub
родитељ
комит
f93de3a516
1 измењених фајлова са 3 додато и 0 уклоњено
  1. +3
    -0
      app/controllers/api/v1/search_controller.rb

+ 3
- 0
app/controllers/api/v1/search_controller.rb Прегледај датотеку

@@ -3,6 +3,9 @@
class Api::V1::SearchController < Api::BaseController
RESULTS_LIMIT = 5

before_action -> { doorkeeper_authorize! :read }
before_action :require_user!

respond_to :json

def index


Loading…
Откажи
Сачувај