Add api key functions

This commit is contained in:
Luke Pulverenti
2014-07-11 22:31:08 -04:00
parent 59de5c0d14
commit b5641013ce
16 changed files with 168 additions and 39 deletions

View File

@@ -283,11 +283,11 @@ namespace MediaBrowser.Server.Implementations.Security
}
info.IsActive = reader.GetBoolean(6);
info.DateCreated = reader.GetDateTime(7);
info.DateCreated = reader.GetDateTime(7).ToUniversalTime();
if (!reader.IsDBNull(8))
{
info.DateRevoked = reader.GetDateTime(8);
info.DateRevoked = reader.GetDateTime(8).ToUniversalTime();
}
return info;