routes/api/srcgraph: remove option field

jc/exp/srcgraph-external-service
unknwon 2019-08-01 18:07:21 -07:00
parent e2629d7ea6
commit e688457820
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
1 changed files with 3 additions and 4 deletions

View File

@ -19,10 +19,9 @@ import (
func NewHandler() http.HandlerFunc {
h := adapter.NewHandler(externalService{}, adapter.Options{
URL: setting.AppURL,
PathPrefix: "/-/srcgraph",
MaxPageLen: 100000, // Current version returns all repositories at once, does not matter
TokenAsUsername: true,
URL: setting.AppURL,
PathPrefix: "/-/srcgraph",
MaxPageLen: 100000, // Current version returns all repositories at once, does not matter
})
return h.ServeHTTP
}