Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 726 Bytes

NEW_FEATURES.md

File metadata and controls

20 lines (15 loc) · 726 Bytes

New Features

Search User Feature

  1. Add username to prisma User schema

  2. Search component

    • Implement component using HeadlessUI Autocomplete
    • Styles should roughly match figma design
    • Search users enpoint onChange
    • Selecting user should push to /users/:id
    • Place component in navbar and / or /users page
  3. Search users endpoint

    • Take string as input
    • Regex search users with username that matches input
    • Returns array of users that match input
  4. Create /users/:id page