Skip to content

Commit f783338

Browse files
committed
Re-enabled API key auth
1 parent dd3a6ff commit f783338

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

KeeperData.Bridge.sln

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solutionitems", "solutionitems", "{90214DF2-657C-49A2-BAB7-5FDBE17E956C}"
1111
ProjectSection(SolutionItems) = preProject
1212
.gitignore = .gitignore
13+
.github\workflows\check-pull-request.yml = .github\workflows\check-pull-request.yml
1314
Dockerfile = Dockerfile
15+
.github\workflows\publish-hotfix.yml = .github\workflows\publish-hotfix.yml
16+
.github\workflows\publish.yml = .github\workflows\publish.yml
1417
README.md = README.md
18+
.github\workflows\sonarcloud.yml = .github\workflows\sonarcloud.yml
1519
EndProjectSection
1620
EndProject
1721
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeeperData.Core", "src\KeeperData.Core\KeeperData.Core.csproj", "{4E96024E-0BCB-4C41-8EB2-876499B07311}"

src/KeeperData.Bridge/Config/FeatureFlags.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,5 @@ public class FeatureFlags
77
{
88
public const string SectionName = "FeatureFlags";
99

10-
/// <summary>
11-
/// Controls whether API key authentication is required for API endpoints.
12-
/// Default: false (authentication disabled, all APIs accessible anonymously).
13-
/// Set to true to enable API key authentication.
14-
/// </summary>
15-
public bool AuthenticationEnabled { get; set; } = false;
10+
public bool AuthenticationEnabled { get; set; } = true;
1611
}

0 commit comments

Comments
 (0)