Controller de entregas

This commit is contained in:
2024-09-11 23:14:26 -03:00
parent 7de1b5279a
commit fde98d5098
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,6 @@
class EntregasController < ApplicationController
def add
@entrega = Entrega.find_by(viaje: params[:viaje], nombre_recibe: params[:recibe])
@entrega.update
end
end