system info
This commit is contained in:
parent
87a3f56da6
commit
5c292194f3
3 changed files with 19 additions and 8 deletions
|
|
@ -108,9 +108,10 @@ namespace Yavsc.Controllers
|
|||
Name = x.Name,
|
||||
Users = x.Users.Select(u=>u.UserId).ToArray()
|
||||
});
|
||||
ViewBag.ThisAssembly = GetType().Assembly.FullName;
|
||||
ViewBag.RunTimeVersion = GetType().Assembly.ImageRuntimeVersion;
|
||||
|
||||
var assembly = GetType().Assembly;
|
||||
ViewBag.ThisAssembly = assembly.FullName;
|
||||
ViewBag.RunTimeVersion = assembly.ImageRuntimeVersion;
|
||||
ViewBag.HostContextFullName = Startup.HostingFullName;
|
||||
return View(new AdminViewModel
|
||||
{
|
||||
Roles = roles.ToArray(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue