Class: Unfuzzle::TicketReport

Inherits:
Object
  • Object
show all
Includes:
Graft
Defined in:
lib/unfuzzle/lib/unfuzzle/ticket_report.rb

Overview

Project

Represents an Unfuddle project. Has the following attributes:

id

The unique identifier for this project

slug

The “short name” for this project

name

The name of this project

description

The description for the project

archived

The archived status of this project (see Project#archived?)

created_at

The date/time that this project was created

updated_at

The date/time that this project was last updated

Class Method Summary collapse

Methods included from Graft

included

Class Method Details

.allObject



23
24
25
26
# File 'lib/unfuzzle/lib/unfuzzle/ticket_report.rb', line 23

def self.all
  response = Request.get('/ticket_reports')
  collection_from(response.body, 'ticket-report')
end