forked from potsda.mn/mobilizon
feat(front): make admin profile view linkable directly with parameters
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
fe4fbc0bdf
commit
08ce7e26b7
|
@ -115,9 +115,9 @@ import Account from "vue-material-design-icons/Account.vue";
|
||||||
|
|
||||||
const PROFILES_PER_PAGE = 10;
|
const PROFILES_PER_PAGE = 10;
|
||||||
|
|
||||||
const preferredUsername = ref("");
|
const preferredUsername = useRouteQuery("preferredUsername", "");
|
||||||
const name = ref("");
|
const name = useRouteQuery("name", "");
|
||||||
const domain = ref("");
|
const domain = useRouteQuery("domain", "");
|
||||||
|
|
||||||
const local = useRouteQuery("local", true, booleanTransformer);
|
const local = useRouteQuery("local", true, booleanTransformer);
|
||||||
const suspended = useRouteQuery("suspended", false, booleanTransformer);
|
const suspended = useRouteQuery("suspended", false, booleanTransformer);
|
||||||
|
|
Loading…
Reference in a new issue