sirportly 1.3.7 → 1.3.8
Sign up to get free protection for your applications and to get access to all the features.
- 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)
|