Skip to content
Jordan Walker edited this page Jun 25, 2020 · 16 revisions

Welcome

Check in's

Task Workflow

Architecture

Database Schema

CREATE TABLE checkins(
   id varchar PRIMARY KEY,
   teamMemberId varchar,
   pdlId varchar,
   checkInDate date,
   targetQtr varchar,
   targetYear varchar
);

REST Endpoints

Sample

  • GET /sample/:brand -- See all samples
  • GET /sample/:brand/:id -- See a single sample
  • GET /sample/:brand/add -- See form to add a sample
  • POST /sample/:brand -- Submit data to create a sample
  • POST /sample/:brand/:id/save/ -- Submit data to save a sample
  • GET /sample/:brand/:id/edit -- See a form to edit a sample
  • PUT /sample/:brand/:id -- Submit data from edit form
  • DELETE /sample/:brand/:id -- Delete a sample
Clone this wiki locally