aboutsummaryrefslogtreecommitdiffstats
path: root/services/context/context_model.go
blob: 3a1776102ff8e76a80d9e05dae81bc926d8a94a5 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package context

// IsUserSiteAdmin returns true if current user is a site admin
func (ctx *Context) IsUserSiteAdmin() bool {
	return ctx.IsSigned && ctx.Doer.IsAdmin
}