Explorar el Código

enable auth middleware

Jason Gorst hace 1 mes
padre
commit
f8e26f2aaf
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. 15 0
      app/pages/create.vue

+ 15 - 0
app/pages/create.vue

@@ -0,0 +1,15 @@
+<template>
+  <CharacterEditor
+    action="create"
+    :initialValue="emptyCharacter"
+  />
+</template>
+
+<script setup>
+definePageMeta({
+  name: "characterCreate",
+  middleware: "signed-in"
+})
+</script>
+
+<style scoped></style>