Add SetNotInCatalog

This commit is contained in:
mr
2026-04-01 13:04:47 +02:00
parent f3b5a54545
commit 20cac09f9d
2 changed files with 4 additions and 1 deletions

View File

@@ -47,7 +47,9 @@ type AbstractObject struct {
func (ri *AbstractObject) GetAccessor(request *tools.APIRequest) Accessor {
return nil
}
func (r *AbstractObject) SetNotInCatalog(ok bool) {
r.NotInCatalog = ok
}
func (r *AbstractObject) IsNotInCatalog() bool {
return r.NotInCatalog
}