Compare commits

..

No commits in common. "183309e1ed19a6ffad58f662fa15faac33b3dd48" and "e4002492843514ffc4bdff96b76e52a48f507f36" have entirely different histories.

3 changed files with 5 additions and 9 deletions

View File

@ -4,14 +4,6 @@ Changelog
(unreleased)
------------
Fix
~~~
- Fix build errors, refs NOISSUE. [Simon Diesenreiter]
0.3.0 (2025-05-24)
------------------
- Ci: more CI fixes, refs NOISSUE. [Simon Diesenreiter]
- Ci: improve commit message generation script, refs NOISSUE. [Simon
Diesenreiter]

View File

@ -18,6 +18,10 @@ LdapIntegration.Instance = new LdapIntegration(AppConfiguration.Instance.LDAPCon
var builder = WebApplication.CreateBuilder(args);
var rand = new Random();
var num = rand.NextInt64();
var mod = num % AppConfiguration.Instance.AverageDaysBetweenRequests;
Console.WriteLine("Setting up user check timer");
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
userCheckTimer.OnOccurence += async (s, ea) =>

View File

@ -1 +1 @@
0.3.1
0.3.0