mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00
update libs and cleanup
This commit is contained in:
@ -28,7 +28,7 @@
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="1.1.2" />
|
||||
<PackageReference Include="AspNetCoreRateLimit" Version="1.0.5" />
|
||||
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="1.2.0" />
|
||||
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="1.2.1" />
|
||||
<PackageReference Include="System.Net.Http" Version="4.3.2" />
|
||||
</ItemGroup>
|
||||
|
||||
|
@ -278,7 +278,7 @@ namespace Bit.Api.Controllers
|
||||
if(userId.HasValue)
|
||||
{
|
||||
var date = await _userService.GetAccountRevisionDateByIdAsync(userId.Value);
|
||||
revisionDate = Core.Utilities.CoreHelpers.ToEpocMilliseconds(date);
|
||||
revisionDate = CoreHelpers.ToEpocMilliseconds(date);
|
||||
}
|
||||
|
||||
return revisionDate;
|
||||
|
@ -2,7 +2,6 @@
|
||||
"globalSettings": {
|
||||
"siteName": "bitwarden",
|
||||
"baseVaultUri": "http://localhost:4001/#",
|
||||
"jwtSigningKey": "THIS IS A SECRET. IT KEEPS YOUR TOKEN SAFE. :)",
|
||||
"stripeApiKey": "SECRET",
|
||||
"sqlServer": {
|
||||
"connectionString": "SECRET"
|
||||
@ -11,13 +10,6 @@
|
||||
"apiKey": "SECRET",
|
||||
"replyToEmail": "hello@bitwarden.com"
|
||||
},
|
||||
"push": {
|
||||
"apnsCertificateThumbprint": "SECRET",
|
||||
"apnsCertificatePassword": "SECRET",
|
||||
"gcmSenderId": "SECRET",
|
||||
"gcmApiKey": "SECRET",
|
||||
"gcmAppPackageName": "com.x8bit.bitwarden"
|
||||
},
|
||||
"identityServer": {
|
||||
"certificateThumbprint": "SECRET"
|
||||
},
|
||||
|
Reference in New Issue
Block a user