Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#3655 from FreeCodeCamp/fix/remove-unu…
Browse files Browse the repository at this point in the history
…sed-endpoint

Remove unused jobs-form endpoint
  • Loading branch information
QuincyLarson committed Oct 8, 2015
2 parents ce57a13 + 76618ef commit 920d9ba
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions server/boot/randomAPIs.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ module.exports = function(app) {
router.get('/nonprofits', nonprofits);
router.get('/nonprofits-form', nonprofitsForm);
router.get('/our-sponsors', sponsors);
router.get('/jobs-form', jobsForm);
router.get('/unsubscribe/:email', unsubscribe);
router.get('/unsubscribed', unsubscribed);
router.get('/get-started', getStarted);
Expand Down Expand Up @@ -208,13 +207,6 @@ module.exports = function(app) {
});
}

function jobsForm(req, res) {
res.render('resources/jobs-form', {
title: 'Employer Partnership Form for Job Postings,' +
' Recruitment and Corporate Sponsorships'
});
}

function sponsors(req, res) {
res.render('sponsors/sponsors', {
title: 'The Sponsors who make Free Code Camp Possible'
Expand Down

0 comments on commit 920d9ba

Please sign in to comment.