From 6c2552d632a93579511015d94feead45a56ba4c2 Mon Sep 17 00:00:00 2001
From: Gustavo S Frehse <gsf20@inf.ufpr.br>
Date: Wed, 2 Apr 2025 11:55:49 -0300
Subject: [PATCH] FIX complaints seed

---
 src/db/seeds/complaints.seed.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/db/seeds/complaints.seed.ts b/src/db/seeds/complaints.seed.ts
index 04640e8..2cc2248 100644
--- a/src/db/seeds/complaints.seed.ts
+++ b/src/db/seeds/complaints.seed.ts
@@ -9,7 +9,7 @@ export default async function seed(db: db){
 
 const complaintData: ComplaintInput[] = [
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -21,7 +21,7 @@ const complaintData: ComplaintInput[] = [
         q4: false,
     },
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -33,7 +33,7 @@ const complaintData: ComplaintInput[] = [
         q4: false,
     },
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -44,4 +44,4 @@ const complaintData: ComplaintInput[] = [
         q3: false,
         q4: false,
     },
-]
\ No newline at end of file
+]
-- 
GitLab