chore!: remove deprecated configuration values

This commit is contained in:
Florian Schade
2024-07-11 13:28:47 +02:00
parent d3515354c8
commit 31272dc168
4 changed files with 4 additions and 8 deletions
+1 -5
View File
@@ -4,6 +4,7 @@ import (
"errors"
cs3permissions "github.com/cs3org/go-cs3apis/cs3/permissions/v1beta1"
settingsmsg "github.com/owncloud/ocis/v2/protogen/gen/ocis/messages/settings/v0"
settingssvc "github.com/owncloud/ocis/v2/protogen/gen/ocis/services/settings/v0"
"github.com/owncloud/ocis/v2/services/settings/pkg/config"
@@ -13,11 +14,6 @@ var (
// Registry uses the strategy pattern as a registry
Registry = map[string]RegisterFunc{}
// ErrPermissionNotFound defines a new error for when a permission was not found
//
// Deprecated use the more generic ErrNotFound
ErrPermissionNotFound = errors.New("permission not found")
// ErrNotFound is the error to use when a resource was not found.
ErrNotFound = errors.New("not found")
)