diff options
author | Rory& <root@rory.gay> | 2024-01-24 02:31:56 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-01-24 17:05:25 +0100 |
commit | 03313562d21d5db9bf6a14ebbeab80e06c883d3a (patch) | |
tree | e000546a2ee8e6a886a7ed9fd01ad674178fb7cb /MatrixUtils.Web/Classes/Constants/RoomConstants.cs | |
parent | Make RMU installable (diff) | |
download | MatrixUtils-03313562d21d5db9bf6a14ebbeab80e06c883d3a.tar.xz |
MRU->RMU, fixes, cleanup
Diffstat (limited to 'MatrixUtils.Web/Classes/Constants/RoomConstants.cs')
-rw-r--r-- | MatrixUtils.Web/Classes/Constants/RoomConstants.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MatrixUtils.Web/Classes/Constants/RoomConstants.cs b/MatrixUtils.Web/Classes/Constants/RoomConstants.cs new file mode 100644 index 0000000..5df0d01 --- /dev/null +++ b/MatrixUtils.Web/Classes/Constants/RoomConstants.cs @@ -0,0 +1,6 @@ +namespace MatrixUtils.Web.Classes.Constants; + +public class RoomConstants { + public static readonly string[] DangerousRoomVersions = { "1", "8" }; + public const string RecommendedRoomVersion = "10"; +} |