mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2025-02-06 01:25:01 +08:00
Added missing functions
This commit is contained in:
parent
8edc5020e1
commit
868ce9cdb4
@ -148,6 +148,14 @@ CSteamUser.prototype.comment = function(message, callback) {
|
||||
this._community.postUserComment(this.steamID, message, callback);
|
||||
};
|
||||
|
||||
CSteamUser.prototype.deleteComment = function(commentID, callback) {
|
||||
this._community.deleteUserComment(this.steamID, commentID, callback);
|
||||
};
|
||||
|
||||
CSteamUser.prototype.getUserComments = function(options, callback) {
|
||||
this._community.postUserComment(this.steamID, options, callback);
|
||||
};
|
||||
|
||||
CSteamUser.prototype.inviteToGroup = function(groupID, callback) {
|
||||
this._community.inviteUserToGroup(this.steamID, groupID, callback);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user