mirror of
https://github.com/modrinth/code.git
synced 2026-08-31 03:55:59 +00:00
* feat: moderation settings * chore: move moderation specific feature flag to settings * feat: force open collapsed regions if opened in new tab * chore: remove unused field * chore: run prepr
14 lines
328 B
Vue
14 lines
328 B
Vue
<script setup lang="ts">
|
|
import ModerationKeybinds from '~/components/ui/moderation/settings/ModerationKeybinds.vue'
|
|
import ModerationSettings from '~/components/ui/moderation/settings/ModerationSettings.vue'
|
|
|
|
useSeoMeta({
|
|
robots: 'noindex',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ModerationKeybinds />
|
|
<ModerationSettings />
|
|
</template>
|