1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

Adjust listing link for view/edit

This commit is contained in:
Kyle Spearrin
2018-03-23 09:48:36 -04:00
parent 2cf9127ef1
commit 1b313e6df4
6 changed files with 8 additions and 4 deletions

View File

@ -47,7 +47,8 @@ namespace Bit.Admin.Controllers
Items = users as List<User>,
Email = string.IsNullOrWhiteSpace(email) ? null : email,
Page = page,
Count = count
Count = count,
Action = _globalSettings.SelfHosted ? "View" : "Edit"
});
}