Skip to content

Instantly share code, notes, and snippets.

View AlexRuptsov's full-sized avatar

Alexander AlexRuptsov

View GitHub Profile
@AlexRuptsov
AlexRuptsov / "Slack Example" app.js
Last active July 23, 2018 09:51
You can just copy-paste the whole code into your own app.js file.
/*
* Advanced Cloud Code Example
*/
var express = require('express');
var app = express();
// This will be our route handler for the /unbilled Slash Command
app.post('/getUnbilledUsers', async function(req, res) {
const query = new Parse.Query(Parse.User);