Method: Services#post

Defined in:
lib/jirarest2/services.rb

#post(data = "") ⇒ Result

Send the POST request

Parameters:

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

    to be sent to Connection.execute

Returns:

  • (Result)

    The result as constructed by Connection.execute



41
42
43
# File 'lib/jirarest2/services.rb', line 41

def post(data = "")
  return @connection.execute("Post",@uritail,data)
end