Skip to content

Commit

Permalink
Corrección de errores
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Parra committed Oct 23, 2023
1 parent 8d3f41a commit c4dd08f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class DirectoryController {
rs.int("nodo_id"),
rs.int("padre_id"),
rs.boolean("habilitado"),
rs.int("respado_id")
rs.int("respaldo_id")
)
}
.single()
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/example/controllers/FileController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class FileController {
rs.boolean("habilitado"),
rs.int("nodo_id"),
rs.int("directorio_id"),
rs.int("respado_id")
rs.int("respaldo_id")
)
}
.list()
Expand Down Expand Up @@ -219,7 +219,7 @@ class FileController {
rs.boolean("habilitado"),
rs.int("nodo_id"),
rs.int("directorio_id"),
rs.int("respado_id")
rs.int("respaldo_id")
)
}
.list()
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/example/models/DirectoryAllModel.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ case class DirectoryModel(
nodoId: Int,
padreId: Int,
habilitado: Boolean,
respado_id: Int
respaldo_id: Int
)
case class DirectoryCreateModel(nombre: String, ruta: String, usuario_id: Int, nodo_id: Int, respaldo_id: Int)

Expand Down

0 comments on commit c4dd08f

Please sign in to comment.