sirportly 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/sirportly.rb +1 -1
- data/lib/sirportly/client.rb +4 -0
- data/lib/sirportly/data_objects/ticket.rb +8 -0
- metadata +1 -1
data/lib/sirportly.rb
CHANGED
data/lib/sirportly/client.rb
CHANGED
|
@@ -126,6 +126,10 @@ module Sirportly
|
|
|
126
126
|
def create_api_token(params = {})
|
|
127
127
|
ApiToken.create(self, params)
|
|
128
128
|
end
|
|
129
|
+
|
|
130
|
+
def contact_tickets(params = {})
|
|
131
|
+
Ticket.contact(self, params)
|
|
132
|
+
end
|
|
129
133
|
|
|
130
134
|
## Enable or disable ticket mode for the token's account
|
|
131
135
|
def import_mode(status = nil)
|