omni/internal/pkg/auth/scope/action.go
Edward Sammut Alessi d3ae77c0cc
chore: bump copyright to 2026
Bump copyright for conformance to 2026

Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
2026-01-21 15:30:49 +01:00

19 lines
414 B
Go

// Copyright (c) 2026 Sidero Labs, Inc.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
package scope
// Action represents an action in the scope.
type Action string
// Action constants.
const (
ActionRead Action = "read"
ActionCreate Action = "create"
ActionModify Action = "modify"
ActionDestroy Action = "destroy"
ActionAny Action = "*"
)