Giter Site home page Giter Site logo

huf-react2-workshop's Introduction

Project API to solve the exercise

RESTApi for the project

Authentication
  POST /auth/login 
  Body:
  {
    "email": "<user_email>",
    "password": "<user_password>"
  }

  POST /auth/signup
  Body:
  {
    "email": "<new_user_email>",
    "password": "<new_user_password>", // should contain letters, digits, symbols, capital letters. A minimum password length is 8 characters 
    "phoneNumber": "<new_user_phone_number>", // should start from +45
    "name": "<new_user_name>",
    "familyName": "<new_user_family_name>"
  }

  POST /auth/verify-user
  Body:
  {
    "email": "<user_email>",
    "code": "<user_verification_code>"
  }

Projects API is restricted by the Bearer token, do not forget to use it when authorizing and when sending requests. (idToken of /auth/login call)
Projects
  GET /projects/get
  Response:
  [
    {
      "id": string,
      "owner": string,
      "title": string,
      "description": string,
      "size_used": string,
      "shared": boolean,
      "shared_password": string|null,
      "created_at": string,
      "updated_at": string,
      "sharedUsers": Profile[],
      "licenses": License[]
    }
  ]

  POST /projects/create
  Body:
  {
    "title": string,
    "description": string
  }
  Response:
  {
    "id": string,
    "owner": string,
    "title": string,
    "description": string,
    "size_used": string,
    "shared": boolean,
    "shared_password": string|null,
    "created_at": string,
    "updated_at": string,
    "sharedUsers": Profile[],
    "licenses": License[]
  }

App parts

The application should consist of several parts:

  1. Login page
  2. Registration page
  3. Possibility to submit email code after user was registered
  4. Projects page with the list of currently created projects
  5. Modal to create a new project

huf-react2-workshop's People

Contributors

nelia11 avatar yurijpaharev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.