COD
DCV
ADLSIG
DIRSIG
RS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/bin/bash | |
# Rocket.Chat Matrix Federation Setup | |
# Author: Alan Sikora <[email protected]> | |
# https://github.com/alansikora | |
PWD=$(pwd) | |
[[ $1 = "-dev" ]] && DEV=true || DEV=false | |
# Set image versions | |
ROCKETCHAT_IMAGE_TAG="5.4.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'click .increment': function() { | |
voteOnLeaderboard("players", function() { | |
Players.update(this._id, { | |
$inc: { score: 1 } | |
}); | |
}); | |
} | |
function voteOnLeaderboard(name, callback) { | |
storage_name = "voted-on-" + name + "-leaderboard"; |