選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

request.go 300B

1234567891011121314
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package middleware
  4. import (
  5. "net/http"
  6. "strings"
  7. )
  8. // IsAPIPath returns true if the specified URL is an API path
  9. func IsAPIPath(req *http.Request) bool {
  10. return strings.HasPrefix(req.URL.Path, "/api/")
  11. }