new endpoints for analys history

This commit is contained in:
root
2025-11-29 17:19:44 +05:00
parent 13cd6819f5
commit 82415ad5ff
15 changed files with 2119 additions and 22 deletions
+19
View File
@@ -126,6 +126,25 @@
<artifactId>batik-transcoder</artifactId>
<version>1.17</version>
</dependency>
<!-- JWT library for token parsing and validation -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.12.3</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.12.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.12.3</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>