Class: Convoy::Project

Inherits:
ApiResource show all
Extended by:
ApiOperations::Create
Includes:
ApiOperations::Delete, ApiOperations::Get, ApiOperations::List, ApiOperations::Save
Defined in:
lib/convoy/resources/project.rb

Instance Attribute Summary

Attributes inherited from ApiResource

#response

Instance Method Summary collapse

Methods included from ApiOperations::Create

create

Methods included from ApiOperations::List

included, #list

Methods included from ApiOperations::Delete

#delete, included

Methods included from ApiOperations::Save

included, #save, #update

Methods included from ApiOperations::Get

#get, included

Methods inherited from ApiResource

#project_base_uri

Methods included from ApiOperations::Request

#send_request

Constructor Details

#initialize(id = nil, config = Convoy.config, **kwargs) ⇒ Project

Returns a new instance of Project.



9
10
11
12
13
14
# File 'lib/convoy/resources/project.rb', line 9

def initialize(id = nil, config = Convoy.config, **kwargs)
  @id = id
  @config = config

  super(**kwargs)
end

Instance Method Details

#resource_uriObject



16
17
18
19
20
21
22
# File 'lib/convoy/resources/project.rb', line 16

def resource_uri
  if @id.nil?
    return "#{@config.base_uri}/#{@config.path_version}/projects"
  end

  "#{@config.base_uri}/#{@config.path_version}/projects" + "/#{@id}"
end