Set parentId=0 for root folders returned by GetTree
This commit is contained in:
parent
774e7d9110
commit
629d0a1626
|
@ -4,6 +4,7 @@ using Innovenergy.Backend.Database;
|
|||
using Innovenergy.Backend.Model;
|
||||
using Innovenergy.Backend.Model.Relations;
|
||||
using Innovenergy.Backend.Utils;
|
||||
using InnovEnergy.Lib.Utils;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using HttpContextAccessor = Microsoft.AspNetCore.Http.HttpContextAccessor;
|
||||
|
||||
|
@ -173,7 +174,8 @@ public class Controller
|
|||
using var db = Db.Connect();
|
||||
|
||||
var folders = db
|
||||
.GetDirectlyAccessibleFolders(caller) // ReSharper disable once AccessToDisposedClosure
|
||||
.GetDirectlyAccessibleFolders(caller)
|
||||
.Do(f => f.ParentId = 0) // ReSharper disable once AccessToDisposedClosure
|
||||
.Select(f => PopulateChildren(db, f));
|
||||
|
||||
var installations = db.GetDirectlyAccessibleInstallations(caller);
|
||||
|
|
Loading…
Reference in New Issue