-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use controllers in the server for easier testing (#807)
* Reorganize models folder * Use controller for webhooks/azure * Use controllers for update_jobs/{id}/* * Use controllers for management endpoint
- Loading branch information
1 parent
0b8d18d
commit 9689187
Showing
49 changed files
with
794 additions
and
707 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
server/Tingle.Dependabot.Tests/Models/DependabotConfigurationTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
server/Tingle.Dependabot.Tests/Models/DependabotUpdateScheduleTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Tingle.Dependabot; | ||
|
||
internal static class AuthConstants | ||
{ | ||
// These values are fixed strings due to configuration sections | ||
internal const string SchemeNameManagement = "Management"; | ||
internal const string SchemeNameServiceHooks = "ServiceHooks"; | ||
internal const string SchemeNameUpdater = "Updater"; | ||
|
||
internal const string PolicyNameManagement = "Management"; | ||
internal const string PolicyNameServiceHooks = "ServiceHooks"; | ||
internal const string PolicyNameUpdater = "Updater"; | ||
} |
Oops, something went wrong.