mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 14:05:10 -05:00

* added enum values for new events * hooked up directory sync event * upgraded the OrganizationUpgrade ReferenceEvent * Added metadata to the OrganizationUserInvited event noting if this is the first event sent from an organization * Added metadata to the AdjustedSeats event * Implemented vaultImported event * Implemented FirstGroupAdded event * Implemented FirstCollectionAdded event * Implemented FirstSecretAdded event type * Implemented SalesAssisted reference event * changed events to match updated requirements * renamed an event enum
27 lines
957 B
C#
27 lines
957 B
C#
using IdentityServer4.Models;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Bit.Core.Settings;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.IdentityServer
|
|
{
|
|
public class StaticClientStore
|
|
{
|
|
public StaticClientStore(GlobalSettings globalSettings)
|
|
{
|
|
ApiClients = new List<Client>
|
|
{
|
|
new ApiClient(globalSettings, BitwardenClient.Mobile, 90, 1),
|
|
new ApiClient(globalSettings, BitwardenClient.Web, 30, 1),
|
|
new ApiClient(globalSettings, BitwardenClient.Browser, 30, 1),
|
|
new ApiClient(globalSettings, BitwardenClient.Desktop, 30, 1),
|
|
new ApiClient(globalSettings, BitwardenClient.Cli, 30, 1),
|
|
new ApiClient(globalSettings, BitwardenClient.DirectoryConnector, 30, 24)
|
|
}.ToDictionary(c => c.ClientId);
|
|
}
|
|
|
|
public IDictionary<string, Client> ApiClients { get; private set; }
|
|
}
|
|
}
|