Skip to content

Instantly share code, notes, and snippets.

View mergulhao's full-sized avatar

Sylvestre Mergulhão mergulhao

View GitHub Profile
def create
if saved = @act.add_participant(@current_person)
flash[:notice] = _('You are now participating in this action!')
else
flash[:notice] = @act.errors.full_messages.first
end
respond_to do |format|
format.html { redirect_to(@act) }
format.xml { head :ok }