Revert "Add Youtube videos to the map (#13592)"

This reverts commit 4a3fcba501.
This commit is contained in:
Quincy Larson
2017-05-03 19:22:05 -05:00
committed by GitHub
parent 4a3fcba501
commit 60187e6c28
23 changed files with 14 additions and 711 deletions

View File

@@ -1,8 +1,6 @@
import request from 'request';
import constantStrings from '../utils/constantStrings.json';
import testimonials from '../resources/testimonials.json';
import { serveYoutubeApiResponse } from '../openApi';
const githubClient = process.env.GITHUB_ID;
const githubSecret = process.env.GITHUB_SECRET;
@@ -12,7 +10,6 @@ module.exports = function(app) {
const User = app.models.User;
const noLangRouter = app.loopback.Router();
noLangRouter.get('/api/github', githubCalls);
noLangRouter.get('/api/youtube', serveYoutubeApiResponse);
noLangRouter.get('/chat', chat);
noLangRouter.get('/twitch', twitch);
noLangRouter.get('/unsubscribe/:email', unsubscribeAll);