mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-22 23:02:07 +02:00
12 lines
336 B
Go
12 lines
336 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package user
|
|
|
|
// setting values
|
|
const (
|
|
EmailNotificationGiteaActionsAll = "all"
|
|
EmailNotificationGiteaActionsFailureOnly = "failureonly" // Default for actions email preference
|
|
EmailNotificationGiteaActionsDisabled = "disabled"
|
|
)
|