Functionality migrated to MiniDocs.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-01-01 12:54:11 -05:00
parent 7a46868862
commit 0f1f8e0418
1 changed files with 0 additions and 11 deletions

View File

@ -19,14 +19,3 @@ LeSnippet >> moveFrom: originPage to: destinationPage [
origin removeSnippet: thisSnippet.
destination addSnippet: thisSnippet.
]
{ #category : #'*LepiterPlugins' }
LeSnippet >> moveTo: pageName [
| db origin destination thisSnippet |
thisSnippet := self snippetModel.
db := self page database.
destination := db pageNamed: pageName.
origin := db pageNamed: thisSnippet page title.
origin removeSnippet: thisSnippet.
destination addSnippet: thisSnippet.
]