slack-client
Version:
A library for creating a Slack client
30 lines (22 loc) • 615 B
JavaScript
/**
* API Facet to make calls to methods in the auth namespace.
*
* This provides functions to call:
* - test: {@link https://api.slack.com/methods/auth.test|auth.test}
*
*/
function AuthFacet(makeAPICall) {
this.name = 'auth';
this.makeAPICall = makeAPICall;
}
/**
* Checks authentication & identity.
* @see {@link https://api.slack.com/methods/auth.test|auth.test}
*
* @param {function} optCb Optional callback, if not using promises.
*/
AuthFacet.prototype.test = function test(optCb) {
var args = {};
return this.makeAPICall('auth.test', args, optCb);
};
module.exports = AuthFacet;