mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-25 16:07:24 +00:00
feat: upstream enterprise preview --------- Signed-off-by: Oliver Baehler <oliver@sudo-i.net> Co-authored-by: CorentinPtrl <pitrel.corentin@gmail.com>
15 lines
423 B
Go
15 lines
423 B
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1beta2
|
|
|
|
import (
|
|
"github.com/projectcapsule/capsule/pkg/api/rbac"
|
|
)
|
|
|
|
// CapsuleConfigurationStatus defines the Capsule configuration status.
|
|
type CapsuleConfigurationStatus struct {
|
|
// Users which are considered Capsule Users and are bound to the Capsule Tenant construct.
|
|
Users rbac.UserListSpec `json:"users,omitempty"`
|
|
}
|