mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Finally a nicer looking and working TextBoxWithButton (inspired from the SearchButton)
SearchBox field style improved
This commit is contained in:
@@ -348,6 +348,18 @@ namespace ModernKeePass.Infrastructure.KeePass
|
||||
return searchResults.Select(e => _mapper.Map<EntryEntity>(e));
|
||||
}
|
||||
|
||||
public IEnumerable<BaseEntity> GetAllGroups(string groupId)
|
||||
{
|
||||
var pwGroup = _pwDatabase.RootGroup.FindGroup(BuildIdFromString(groupId), true);
|
||||
var groups = pwGroup.GetGroups(true).Select(g => new GroupEntity
|
||||
{
|
||||
Id = g.Uuid.ToHexString(),
|
||||
Name = g.Name,
|
||||
ParentName = g.ParentGroup?.Name
|
||||
});
|
||||
return groups;
|
||||
}
|
||||
|
||||
private CompositeKey CreateCompositeKey(Credentials credentials)
|
||||
{
|
||||
var compositeKey = new CompositeKey();
|
||||
|
Reference in New Issue
Block a user