about summary refs log tree commit diff
path: root/LibMatrix/Filters/LocalRoomQueryFilter.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-08-08 02:44:16 +0200
committerRory& <root@rory.gay>2024-12-15 02:12:26 +0100
commite2f171f07e5b86cb09aefe7313fa4b7e065b5e3e (patch)
tree7d7b4910f1bb647d942a503e5e4b2ab4f5c382b3 /LibMatrix/Filters/LocalRoomQueryFilter.cs
parentSync storage (diff)
downloadLibMatrix-e2f171f07e5b86cb09aefe7313fa4b7e065b5e3e.tar.xz
More synapse admin apis
Diffstat (limited to 'LibMatrix/Filters/LocalRoomQueryFilter.cs')
-rw-r--r--LibMatrix/Filters/LocalRoomQueryFilter.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/LibMatrix/Filters/LocalRoomQueryFilter.cs b/LibMatrix/Filters/LocalRoomQueryFilter.cs
deleted file mode 100644

index b3bd4c0..0000000 --- a/LibMatrix/Filters/LocalRoomQueryFilter.cs +++ /dev/null
@@ -1,27 +0,0 @@ -namespace LibMatrix.Filters; - -public class LocalRoomQueryFilter { - public string RoomIdContains { get; set; } = ""; - public string NameContains { get; set; } = ""; - public string CanonicalAliasContains { get; set; } = ""; - public string VersionContains { get; set; } = ""; - public string CreatorContains { get; set; } = ""; - public string EncryptionContains { get; set; } = ""; - public string JoinRulesContains { get; set; } = ""; - public string GuestAccessContains { get; set; } = ""; - public string HistoryVisibilityContains { get; set; } = ""; - - public bool Federatable { get; set; } = true; - public bool Public { get; set; } = true; - - public int JoinedMembersGreaterThan { get; set; } - public int JoinedMembersLessThan { get; set; } = int.MaxValue; - - public int JoinedLocalMembersGreaterThan { get; set; } - public int JoinedLocalMembersLessThan { get; set; } = int.MaxValue; - public int StateEventsGreaterThan { get; set; } - public int StateEventsLessThan { get; set; } = int.MaxValue; - - public bool CheckFederation { get; set; } - public bool CheckPublic { get; set; } -} \ No newline at end of file