def update
    @ticket = Ticket.find(params[:id])
    if @ticket.update_attributes(params[:ticket])
      redirect_to @ticket, notice: t("flash.notice.successfully_updated", class: t("tickets.ticket") )
    else