Public Access
Let a host carry pinned folders, merged path by path
This commit is contained in:
@@ -39,7 +39,8 @@ internal static class HostFactory
|
||||
Guid? credentialId = null,
|
||||
bool? asksForPassword = null,
|
||||
Guid? groupId = null,
|
||||
Guid[]? tags = null) =>
|
||||
Guid[]? tags = null,
|
||||
string[]? pinnedPaths = null) =>
|
||||
new()
|
||||
{
|
||||
Label = label,
|
||||
@@ -57,6 +58,7 @@ internal static class HostFactory
|
||||
AsksForPassword = asksForPassword,
|
||||
GroupId = groupId,
|
||||
TagIds = tags is null ? TagSet.Empty : TagSet.Create(tags),
|
||||
PinnedPaths = pinnedPaths is null ? PinnedPathList.Empty : PinnedPathList.Create(pinnedPaths),
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user