# File app/controllers/admin/sms_on_rails/phone_carriers_controller.rb, line 76
  def destroy
    @phone_carrier = SmsOnRails::PhoneCarrier.find(params[:id])
    @phone_carrier.destroy

    respond_to do |format|
      format.html { redirect_to(sms_phone_carriers_url) }
      format.xml  { head :ok }
    end
  end