|
|
@@ -622,11 +622,6 @@
|
|
|
[s]
|
|
|
(string/includes? s ".property"))
|
|
|
|
|
|
-(defn user-class-namespace?
|
|
|
- "Determines if namespace string is a user class"
|
|
|
- [s]
|
|
|
- (string/includes? s ".class"))
|
|
|
-
|
|
|
(defn internal-property?
|
|
|
"Determines if ident kw is an internal property. This includes db-attribute properties
|
|
|
unlike logseq-property? and doesn't include non-property idents unlike internal-ident?"
|
|
|
@@ -643,7 +638,6 @@
|
|
|
(and k-name
|
|
|
(or (contains? logseq-property-namespaces k-name)
|
|
|
(user-property-namespace? k-name)
|
|
|
- (user-class-namespace? k-name)
|
|
|
;; disallow private db-attribute-properties as they cause unwanted refs
|
|
|
;; and appear noisily in debugging contexts
|
|
|
(and (keyword? k) (contains? public-db-attribute-properties k))))))
|