summaryrefslogtreecommitdiffstats
path: root/server/api/locations.js
blob: 7595837ea31956024a88998dedff2af80012c0cf (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!')
  }
}