-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed an issue that caused user roles and login info to fail to appear on the user list page in admin. * Fixed an issue that could cause Gameboard to fail to align challenge end time with engine expiration. * WIP * Minor cleanup * Fixed a bug that could cause incorrect resolution of user team membership * Update topo package version * Bug fixes and new tags filter for the challenges report * Add unstarted teams/no launched challenge teams to enrollment report summary * Game center teams sort fix, score progress widget fix, cleanup * Fixed bugs: game level feedback, add tags to practice area report, hide invisible tags * Fix compile error * Improve regex efficiency and fix tag bugs * Correct rendering of enrollment report
- Loading branch information
1 parent
4772a4f
commit 550b840
Showing
6 changed files
with
44 additions
and
24 deletions.
There are no files selected for viewing
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,11 @@ | ||
using System.Text.RegularExpressions; | ||
|
||
namespace Gameboard.Api.Common; | ||
|
||
public static partial class CommonRegexes | ||
{ | ||
public static readonly Regex WhitespaceGreedy = _WhitespaceGreedy(); | ||
|
||
[GeneratedRegex(@"\s+", RegexOptions.Multiline)] | ||
private static partial Regex _WhitespaceGreedy(); | ||
} |
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