Class: LWS::Ticket::Tag
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Ticket::Tag
- Defined in:
- lib/lws/apps/ticket.rb
Overview
The ticket tag class
Instance Attribute Summary collapse
-
#description ⇒ String?
The description of the ticket tag.
-
#dev_issue_id ⇒ Integer?
The ID of the issue in LeftClick’s internal bug tracking system.
-
#name ⇒ String
The name of the ticket tag.
-
#slug ⇒ String
readonly
The slug of the ticket tag.
-
#tickets ⇒ Array<Ticket>
The ticket associated with the tag.
Attributes inherited from Generic::Model
#created_at, #id, #updated_at, #url, #url_html
Method Summary
Methods inherited from Generic::Model
#deep_dup, #dig, #reload, #rollback, #save
Instance Attribute Details
#description ⇒ String?
Returns the description of the ticket tag.
150 |
# File 'lib/lws/apps/ticket.rb', line 150 attribute :description |
#dev_issue_id ⇒ Integer?
Returns the ID of the issue in LeftClick’s internal bug tracking system.
155 |
# File 'lib/lws/apps/ticket.rb', line 155 attribute :dev_issue_id |
#name ⇒ String
Returns the name of the ticket tag.
159 |
# File 'lib/lws/apps/ticket.rb', line 159 attribute :name |
#slug ⇒ String (readonly)
Returns the slug of the ticket tag.
163 |
# File 'lib/lws/apps/ticket.rb', line 163 attribute :slug |
#tickets ⇒ Array<Ticket>
Returns the ticket associated with the tag.
167 |
# File 'lib/lws/apps/ticket.rb', line 167 has_many :tickets |