feature/core-service-auth #1

Merged
aep merged 4 commits from feature/core-service-auth into master 2025-08-27 14:09:33 +03:00
12 changed files with 662 additions and 37 deletions
Showing only changes of commit 0f93308c65 - Show all commits

View File

@@ -90,9 +90,9 @@ type OrganizationResponse struct {
// LoginResponse ответ на аутентификацию // LoginResponse ответ на аутентификацию
type LoginResponse struct { type LoginResponse struct {
Token string `json:"token"` Token string `json:"token"`
User UserResponse `json:"user"` User UserResponse `json:"user"`
Organization OrganizationResponse `json:"organization"` Organization OrganizationResponse `json:"organization"`
} }
// CreateLocationRequest запрос на создание места хранения // CreateLocationRequest запрос на создание места хранения

View File

@@ -7,6 +7,7 @@ import (
"fmt" "fmt"
"erp-mvp/core-service/internal/models" "erp-mvp/core-service/internal/models"
"github.com/google/uuid" "github.com/google/uuid"
) )