You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kubsu-platform-crud-2023/apps/auth
Artem-Darius Weber 52ff778f90
Delete apps/auth/tokens.example directory
1 year ago
..
prisma feat: added prisma for the auth service 2 years ago
serving feat: auth service init 2 years ago
src feat: added submodules in the app.module.ts for the auth service 2 years ago
.ASC_MANIFEST feat: auth service init 2 years ago
.env.example feat: auth service init 2 years ago
.eslintrc.json feat: add user data service 2 years ago
.gitignore feat: auth service init 2 years ago
Dockerfile feat: auth service init 2 years ago
LICENSE feat: auth service init 2 years ago
README.md docs: updated graphs 2 years ago
jest.config.ts feat: add user data service 2 years ago
project.json feat: add user data service 2 years ago
tsconfig.app.json feat: add user data service 2 years ago
tsconfig.json feat: add user data service 2 years ago
tsconfig.spec.json feat: add user data service 2 years ago
webpack.config.js feat: add user data service 2 years ago

README.md

IT Lab Platform - Auth Service

Эта директория содержит исходный код системы аунтификации приложения "IT Lab Application".

Structure

graph TD;
    agw-->auth;
    auth-->auth-db;
    auth-db-->auth-db-admin;

Ports

  • 8082 - pg Admin
  • 3005 - app

API

  • /user
    • /devices
      • POST
      • parameters:
        • uuid: string(UUID)
        • select?:
          • name?: boolean
          • fingerprint?: boolean
          • isBlocked?: boolean
      • return:
        • Array:
          • name?: string
          • fingerprint?: string
          • isBlocked?: boolean
      • The select statement needs at least one truthy value.