TD-322: [BACK]. [реализовать сервис для подписания документов в контейнере signer] #2

Merged
akurilenko merged 22 commits from TD-322 into main 2024-10-28 14:44:12 +03:00
8 changed files with 10 additions and 10 deletions
Showing only changes of commit d4c3146c02 - Show all commits

View File

@ -2,7 +2,7 @@
declare(strict_types=1); declare(strict_types=1);
namespace App\Sign\Api; namespace App\Api;
use App\Infrastructure\External\Api\AbstractApi; use App\Infrastructure\External\Api\AbstractApi;
use App\Infrastructure\External\Api\BinaryStringFileResult; use App\Infrastructure\External\Api\BinaryStringFileResult;

View File

@ -2,7 +2,7 @@
declare(strict_types=1); declare(strict_types=1);
namespace App\Sign\Api; namespace App\Api;
class ApiParams class ApiParams
{ {

View File

@ -2,7 +2,7 @@
declare(strict_types=1); declare(strict_types=1);
namespace App\Sign\Api\Request; namespace App\Api\Request;
use App\Infrastructure\Http\RequestDtoInterface; use App\Infrastructure\Http\RequestDtoInterface;

View File

@ -2,15 +2,15 @@
declare(strict_types=1); declare(strict_types=1);
namespace App\Sign\Controller; namespace App\Controller;
use App\Sign\Api\Request\SignRequest; use App\Api\Request\SignRequest;
use App\Sign\SignService; use App\SignService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Exception\AccessDeniedException; use Symfony\Component\Security\Core\Exception\AccessDeniedException;
class SignController extends AbstractController class SignController extends AbstractController

0
backend/src/Entity/.gitignore vendored Normal file
View File

0
backend/src/Repository/.gitignore vendored Normal file
View File

View File

@ -2,11 +2,11 @@
declare(strict_types=1); declare(strict_types=1);
namespace App\Sign; namespace App;
use App\Api\Api;
use App\Api\ApiParams;
use App\Infrastructure\External\Api\BinaryStringFileResult; use App\Infrastructure\External\Api\BinaryStringFileResult;
use App\Sign\Api\Api;
use App\Sign\Api\ApiParams;
use Exception; use Exception;
use RuntimeException; use RuntimeException;