gitea源码

context_model.go 260B

12345678910
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package context
  4. // IsUserSiteAdmin returns true if current user is a site admin
  5. func (ctx *Context) IsUserSiteAdmin() bool {
  6. return ctx.IsSigned && ctx.Doer.IsAdmin
  7. }