Files
gitea/models/audit/origin.go
bircni da37b7916b feat: Add audit logging (#38189)
Co-authored-by: bircni <bircni@users.noreply.github.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
2026-09-12 08:15:23 +00:00

15 lines
309 B
Go

// Copyright 2026 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package audit
// Origin identifies how an audit event was initiated.
type Origin string
const (
OriginUI Origin = "ui"
OriginAPI Origin = "api"
OriginCLI Origin = "cli"
OriginSystem Origin = "system"
)