mirror of
https://github.com/bitwarden/server.git
synced 2025-06-16 15:53:13 -05:00

* Allow feature flag state configuration via application settings * Use string values for flags * Update src/Core/Services/Implementations/LaunchDarklyFeatureService.cs Remove useless `ToString()`. Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> --------- Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com>
9 lines
227 B
C#
9 lines
227 B
C#
namespace Bit.Core.Settings;
|
|
|
|
public interface ILaunchDarklySettings
|
|
{
|
|
public string SdkKey { get; set; }
|
|
public string FlagDataFilePath { get; set; }
|
|
public Dictionary<string, string> FlagValues { get; set; }
|
|
}
|