Method: Services#delete

Defined in:
lib/jirarest2/services.rb

#delete(data = "") ⇒ Result

Send the DELETE request

Parameters:

  • data (Hash) (defaults to: "")

    to be sent to Connection.execute

Returns:

  • (Result)

    The result as constructed by Connection.execute



48
49
50
# File 'lib/jirarest2/services.rb', line 48

def delete(data = "")
  return @connection.execute("Delete",@uritail,data)
end