mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
added installations, push scoped tokens, push api
This commit is contained in:
16
src/Core/Repositories/SqlServer/InstallationRepository.cs
Normal file
16
src/Core/Repositories/SqlServer/InstallationRepository.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Bit.Core.Models.Table;
|
||||
|
||||
namespace Bit.Core.Repositories.SqlServer
|
||||
{
|
||||
public class InstallationRepository : Repository<Installation, Guid>, IInstallationRepository
|
||||
{
|
||||
public InstallationRepository(GlobalSettings globalSettings)
|
||||
: this(globalSettings.SqlServer.ConnectionString)
|
||||
{ }
|
||||
|
||||
public InstallationRepository(string connectionString)
|
||||
: base(connectionString)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user