Populate user selector

This commit is contained in:
Eli Ribble 2026-03-31 23:34:03 +00:00
parent 05a7bbb4e3
commit 0ecf9c1be1
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -17,7 +17,7 @@ type contentURLAPI struct {
ReviewTask string `json:"review_task"`
Signal string `json:"signal"`
Upload string `json:"upload"`
User string `json:"users"`
User string `json:"user"`
}
type contentURLs struct {
API contentURLAPI `json:"api"`

View file

@ -108,6 +108,7 @@
<script setup lang="ts">
import { ref } from "vue";
import { useSessionStore } from "@/store/session";
import UserSelector from "@/components/UserSelector.vue";
import type { User } from "@/types";
const session = useSessionStore();