Moving to MiniDocs.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-09-21 12:38:22 -05:00
parent 53326c077e
commit ac3e92bfc9
1 changed files with 0 additions and 22 deletions

View File

@ -5,28 +5,6 @@ LeTextualSnippet >> childrenIds [
^ self children collect: [ :each | each uidString ]
]
{ #category : #'*Grafoscopio-Utils-Core' }
LeTextualSnippet >> metadata [
^ self optionAt: 'metadata' ifAbsentPut: [ self metadataInit ]
]
{ #category : #'*Grafoscopio-Utils-Core' }
LeTextualSnippet >> metadataInit [
| surrogate |
self parent
ifNil: [ surrogate := nil]
ifNotNil: [ surrogate := self parent uidString ].
^ OrderedDictionary new
at: 'id' put: self uidString;
at: 'parent' put: surrogate;
at: 'created' put: self createTime asString;
at: 'modified' put: self latestEditTime asString;
at: 'creator' put: self createEmail asString;
at: 'modifier' put: self editEmail asString;
yourself
]
{ #category : #'*Grafoscopio-Utils-Core' }
LeTextualSnippet >> options [
^ options