mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-12 17:10:55 +00:00
Co-authored-by: bircni <bircni@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
15 lines
309 B
Go
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"
|
|
)
|