Method: OEHClient::Meta::Workspace#touchpoints

Defined in:
lib/oehclient/meta/workspace.rb

#touchpointsObject

retrieve the full collection of touchpoints from the curent workspace



43
44
45
46
47
48
49
# File 'lib/oehclient/meta/workspace.rb', line 43

def touchpoints()
	touchpoint_collection 	= Array.new
	OEHClient::Meta::Touchpoint.get_collection(self.class.session, space: id).each do | touchpoint_item |
		touchpoint_collection << OEHClient::Meta::Touchpoint.create(self, touchpoint_item)
	end
	touchpoint_collection
end