ugc.js 372 B

1234567891011
  1. 'use strict';
  2. import express from 'express';
  3. import Rating from '../controller/ugc/rating'
  4. const router = express.Router();
  5. router.get('/v2/restaurants/:restaurant_id/ratings', Rating.getRatings)
  6. router.get('/v2/restaurants/:restaurant_id/ratings/scores', Rating.getScores)
  7. router.get('/v2/restaurants/:restaurant_id/ratings/tags', Rating.getTags)
  8. export default router