7 lines
175 B
Ruby
7 lines
175 B
Ruby
|
class EntregasController < ApplicationController
|
||
|
def add
|
||
|
@entrega = Entrega.find_by(viaje: params[:viaje], nombre_recibe: params[:recibe])
|
||
|
@entrega.update
|
||
|
end
|
||
|
end
|