Make EffectiveMembership utils generic

Fixes https://github.com/vector-im/riot-web/issues/14460

Just have to move them to utils.
This commit is contained in:
Travis Ralston 2020-07-13 20:29:46 -06:00
parent 126aa862db
commit 4a8a59c578
5 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ import { FILTER_CHANGED, IFilterCondition } from "./filters/IFilterCondition";
import { TagWatcher } from "./TagWatcher";
import RoomViewStore from "../RoomViewStore";
import { Algorithm, LIST_UPDATED_EVENT } from "./algorithms/Algorithm";
import { EffectiveMembership, getEffectiveMembership } from "./membership";
import { EffectiveMembership, getEffectiveMembership } from "../../utils/membership";
import { isNullOrUndefined } from "matrix-js-sdk/src/utils";
import RoomListLayoutStore from "./RoomListLayoutStore";
import { MarkedExecution } from "../../utils/MarkedExecution";