Commit 5918e999 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] Flow Nodes order

parent 958e43fb
...@@ -211,12 +211,16 @@ flowCorpusUser :: ( FlowCmdM env err m ...@@ -211,12 +211,16 @@ flowCorpusUser :: ( FlowCmdM env err m
flowCorpusUser l user corpusName ctype ids = do flowCorpusUser l user corpusName ctype ids = do
-- User Flow -- User Flow
(userId, _rootId, userCorpusId) <- getOrMk_RootWithCorpus user corpusName ctype (userId, _rootId, userCorpusId) <- getOrMk_RootWithCorpus user corpusName ctype
-- NodeTexts is first
_tId <- insertDefaultNode NodeTexts userCorpusId userId
-- printDebug "NodeTexts: " tId
-- NodeList is second
listId <- getOrMkList userCorpusId userId listId <- getOrMkList userCorpusId userId
-- _cooc <- insertDefaultNode NodeListCooc listId userId -- _cooc <- insertDefaultNode NodeListCooc listId userId
-- TODO: check if present already, ignore -- TODO: check if present already, ignore
_ <- Doc.add userCorpusId ids _ <- Doc.add userCorpusId ids
_tId <- insertDefaultNode NodeTexts userCorpusId userId
-- printDebug "Node Text Ids:" tId -- printDebug "Node Text Ids:" tId
-- User List Flow -- User List Flow
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment