Class: HiringThing::Jobs

Inherits:
Resource
  • Object
show all
Defined in:
lib/hiringthing_api/resources/jobs.rb

Defined Under Namespace

Classes: Applications

Instance Method Summary collapse

Methods inherited from Resource

element_name, method_missing

Instance Method Details

#applications(params = {}) ⇒ Object



8
9
10
11
12
13
# File 'lib/hiringthing_api/resources/jobs.rb', line 8

def applications(params = {})
	# get my applications
	params.merge!({:job_id => self.id})
	Applications.prefix = "/remote/jobs/#{ self.id.to_s }/"
	Applications
end