summaryrefslogtreecommitdiffstats
path: root/server/api/locations.js
blob: c72ff933723c27ed7aba89e5ce49091d63ba23af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* global __appdir */
//var path = require('path');

module.exports = {
    get: function(req, res) {
        console.log('You successfully called an authentication call!');
        res.send('You successfully called an authentication call!');
    },
    post: function(req, res) {
        console.log('You successfully called an unauthentication call!');
        res.send('You successfully called an unauthentication call!');
    }
}