Skip to content

Instantly share code, notes, and snippets.

@olvap
Created May 21, 2010 21:10
Show Gist options
  • Save olvap/409442 to your computer and use it in GitHub Desktop.
Save olvap/409442 to your computer and use it in GitHub Desktop.
class ContribuyentesController < ApplicationController
def baja
@contribuyente = Contribuyente.find(params[:id])
@contribuyente.estado_id = 1
@contribuyente.save
redirect_to(@contribuyente)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment