Skip to content

Instantly share code, notes, and snippets.

View OneCricketeer's full-sized avatar
💭
I bleed in six colors ❤️‍🔥 Stay Hungry 🍏 Stay Foolish 🥰

Jordan Moore OneCricketeer

💭
I bleed in six colors ❤️‍🔥 Stay Hungry 🍏 Stay Foolish 🥰
View GitHub Profile
@OneCricketeer
OneCricketeer / main.js
Last active January 25, 2022 06:36
Targeted Push Notifications: Parse.com Cloud Code
// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:
Parse.Cloud.define("hello", function(request, response) {
response.success("Hello world!");
});
Parse.Cloud.define("userWithEmailExists", function(request, response) {
var email = request.params.email;
if (email != null && email !== "") {
email = email.trim();