+
+ @{
+ var urls = Configuration.GetSection("ReplayUrls").Get()!;
+ var selectedServersQuery = queryDictionary["selectedServers"];
+ if (selectedServersQuery == null)
+ {
+ selectedServersQuery = urls.Select(x => x.FallBackServerName).Aggregate((x, y) => $"{x},{y}");
+ }
+
+ var selectedServers = selectedServersQuery.Split(',');
+ foreach (var storage in urls)
+ {
+ // Server selection
+
+
+ }
+ }
+
+
+