mirror of
https://github.com/modrinth/code.git
synced 2026-08-26 17:44:50 +00:00
* feat: throw 401 errors when a user doesn't have permissions * remove pointless message * prepr
13 lines
161 B
Vue
13 lines
161 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: ['auth', 'staff'],
|
|
})
|
|
|
|
useSeoMeta({
|
|
robots: 'noindex',
|
|
})
|
|
</script>
|
|
<template>
|
|
<NuxtPage />
|
|
</template>
|