Giter VIP home page Giter VIP logo

connect-me-now's Introduction

connect-me-now

connect-me-now's People

Contributors

indesignify avatar kolombina avatar

Stargazers

 avatar

Watchers

 avatar  avatar

connect-me-now's Issues

Implement User API

  1. Создание пользователя
    POST /users

  2. Получение пользователя
    GET /users/{userId}

  3. Поиск пользователей с фильтрами (используем PagingAndSortingRepository)
    GET /users?page & pageSize & lastName&firstName&email&nickname....

  4. Удаление пользователя - Перевод в статус inactive
    DELETE /users/{userId}

  5. Обновление параметров пользователя
    PUT /users/{userId}

Implement Friends API

  1. Запрос на добавление в друзья / подтверждение дружбы
    POST /{userId}/friends
    input body: {
    friendIds: [id1, id2...]
    }

  2. Удалить друга / отменить запрос
    DELETE /{userId}/friends/{friendId}

  3. Показать всех друзей
    GET /{userId}/friends
    output body {
    friends: [],
    incomingRequests: [], // Добавляются ко мне в други
    outcomingRequests: [], // Я добавляюсь в други
    }

Implement Meetings API

  1. Назначить встречу / Подтвердить встречу
    POST /meetings

  2. Завершить встречу
    POST /meetings/{meetingId}/complete

  3. Отменить встречу (+ нужно сохранять кто отменил)
    POST /meetings/{meetingId}/cancel

  4. Получить информацию по встрече
    GET /meetings/{meetingId}
    output body {
    // Координаты и прочая...
    }

Implement Auth API

  1. Регистрация пользователя (логин, пароль, почта)
    POST /auth/registration

  2. Логин пользователя (логин, пароль) -> token (out of scope)
    POST /auth/login

  3. (out of scope) Выход
    POST /auth/logout

Add initial entities

При старте добавить наполнение базы данных сущностями для удобства работы с api

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.