We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 656a8bb + f44fb6e commit 61c2ccaCopy full SHA for 61c2cca
src/lib/renderforest.js
@@ -10,6 +10,7 @@ const Http = require('./http/http')
10
11
const Fonts = require('./resources/fonts')
12
const Projects = require('./resources/projects')
13
+const Supports = require('./resources/supports')
14
const Templates = require('./resources/templates')
15
const Users = require('./resources/users')
16
@@ -87,6 +88,15 @@ class Renderforest {
87
88
return Projects.duplicateProject(payload)
89
}
90
91
+ /**
92
+ * @param {Object} payload
93
+ * @returns {Promise.<Object>}
94
+ * @description Add Supports Ticket.
95
+ */
96
+ addSupportsTicket (payload) {
97
+ return Supports.addSupportsTicket(payload)
98
+ }
99
+
100
/**
101
* @returns {Promise.<Object>}
102
* @description Get Current User.
0 commit comments