Skip to content

Instantly share code, notes, and snippets.

View GitHubGreg's full-sized avatar

Greg GitHubGreg

  • Montreal, Canada
View GitHub Profile
Name | Opportunity? | Data room?
Corporate dd Checkbox
Institutional dd Checkbox
Portfolio name Checkbox Checkbox
Portfolio name Checkbox Checkbox
Portfolio name Checkbox Checkbox
@GitHubGreg
GitHubGreg / devcamper_specs.md
Created October 2, 2019 01:21 — forked from bradtraversy/devcamper_specs.md
Specs for Devcamper Udemy course project

DevCamper Backend API Specifications

Create the backend for a bootcamp directory website. The frontend/UI will be created by another team (future course). The html/css template has been created and can be used as a reference for functionality. All of the functionality below needs to be fully implmented in this project.

Bootcamps

  • List all bootcamps in the database
    • Pagination
    • Select specific fields in result
    • Limit number of results
  • Filter by fields
import React from 'react';
import { compose } from 'redux';
import { connect } from 'react-redux';
import { Row, Card, CardBody, CardTitle } from 'reactstrap';
import { withFirestore, firestoreConnect } from 'react-redux-firebase';
import { Colxx } from 'Components/CustomBootstrap';
import IntlMessages from 'Util/IntlMessages';
import 'react-datepicker/dist/react-datepicker.css';
const query = (selectedYear = new Date().getFullYear().toString()) => {