Class: Teambox::Page

Inherits:
Resource show all
Defined in:
lib/teambox-client/models/page.rb

Instance Attribute Summary

Attributes inherited from Resource

#data, #list, #references

Instance Method Summary collapse

Methods inherited from Resource

#created_at, #destroy, #id, #initialize, #inspect, #method_missing, #next, #prev, #reload, #save, #updated_at

Methods included from ReferenceList

#generate_references, #get_or_make_reference, #get_or_make_references, #get_reference, #set_reference

Constructor Details

This class inherits a constructor from Teambox::Resource

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Teambox::Resource

Instance Method Details

#projectObject



7
8
9
# File 'lib/teambox-client/models/page.rb', line 7

def project
  get_or_make_reference('Project', @data, 'project_id')
end

#slotsObject

Returns an Array of Teambox::PageSlot



12
13
14
# File 'lib/teambox-client/models/page.rb', line 12

def slots
  get_or_make_references('PageSlot', @data, 'slot_ids', 'slots')
end

#urlObject

:nodoc:



16
17
18
# File 'lib/teambox-client/models/page.rb', line 16

def url #:nodoc:
  "/projects/#{@data['project_id']}/pages/#{@data['id']}"
end

#userObject



3
4
5
# File 'lib/teambox-client/models/page.rb', line 3

def user
  get_or_make_reference('User', @data, 'user_id')
end