Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }