2 Commits 8123829346 ... 6102991b3c

Author SHA1 Message Date
  Ricardo García Jiménez 6102991b3c feat: Agrega nuevos tags al modificar la nota del usuario desde la API 6 days ago
  Ricardo García Jiménez 8123829346 feat: Agrega nuevos tags al modificar la nota del usuario desde la API 6 days ago
2 changed files with 4 additions and 3 deletions
  1. 3 3
      app/Controllers/Api/NoteController.php
  2. 1 0
      app/Controllers/Api/TagController.php

+ 3 - 3
app/Controllers/Api/NoteController.php

@@ -75,7 +75,7 @@ class NoteController
             // Consulta la información de los tags del usuario a relacionar en la nota.
             $tags = $query->where('user_id', $userAuth['id'])->get();
 
-            // Comprueba que los tags enviados existan.
+            // Comprueba que los tags enviados estén registrados.
             if (array_diff($data['tags'], array_column($tags, 'id'))) {
                 $res->status(StatusCode::NOT_FOUND)->json([
                     'error' => 'The tags to add cannot be found'
@@ -341,14 +341,14 @@ class NoteController
                 // Consulta la información de los nuevos tags a relacionar en la nota.
                 $newTagsToAdd = $query->where('user_id', $userAuth['id'])->get();
 
-                // Comprueba que los tags enviados existan.
+                // Comprueba que los tags enviados estén registrados.
                 if (array_diff($newNoteTags, array_column($newTagsToAdd, 'id'))) {
                     $res->status(StatusCode::NOT_FOUND)->json([
                         'error' => 'The new tags to add cannot be found'
                     ]);
                 }
 
-                // Relaciona los nuevos tags a la nota.
+                // Relaciona los nuevos tags de la nota.
                 foreach ($newTagsToAdd as $tag) {
                     $datetime = DB::datetime();
 

+ 1 - 0
app/Controllers/Api/TagController.php

@@ -46,6 +46,7 @@ class TagController
             ]);
         }
 
+        // Limpia espacios sobrantes del nombre del nuevo tag.
         $data['name'] = trim($data['name']);
 
         $userAuth = $req->app->local('userAuth');