Skip to content

Instantly share code, notes, and snippets.

@pavelk2
Created January 6, 2015 22:06
Show Gist options
  • Save pavelk2/46d9d744c30d9aa81b3d to your computer and use it in GitHub Desktop.
Save pavelk2/46d9d744c30d9aa81b3d to your computer and use it in GitHub Desktop.
moderation: function(content) {
allow = true;
if (content.text) {
var keywords = ["likes", "commented", "and"];
for (var i = 0; i < keywords.length && allow; i++) {
if (content.text.indexOf(content.author_name + " " + keywords[i]) == 0) {
allow = false;
}
}
}
return allow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment