Skip to content

Commit

Permalink
Merge pull request #61 from TTG-Club/feature/refactoring-dto
Browse files Browse the repository at this point in the history
Рефакторинг всего кода, с переносом в доменную структуру
  • Loading branch information
Magistrus authored Mar 1, 2025
2 parents ab01444 + cd96ce9 commit 8c6f9c0
Show file tree
Hide file tree
Showing 251 changed files with 2,614 additions and 6,737 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/club/ttg/dnd5/config/SecurityConfig.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package club.ttg.dnd5.config;

import club.ttg.dnd5.security.JwtAuthFilter;
import club.ttg.dnd5.service.user.UserService;
import club.ttg.dnd5.domain.user.service.UserService;
import io.swagger.v3.oas.annotations.enums.SecuritySchemeType;
import io.swagger.v3.oas.annotations.security.SecurityScheme;
import jakarta.servlet.http.HttpServletRequest;
Expand Down

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions src/main/java/club/ttg/dnd5/controller/god/GodController.java

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions src/main/java/club/ttg/dnd5/dictionary/EntityType.java

This file was deleted.

15 changes: 0 additions & 15 deletions src/main/java/club/ttg/dnd5/dictionary/EntryType.java

This file was deleted.

66 changes: 0 additions & 66 deletions src/main/java/club/ttg/dnd5/dictionary/Skill.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
@Getter
@AllArgsConstructor
public enum WeaponCategory {
SIMPLE_MELE("Простое рукопашное"),
SIMPLE_MELEE("Простое рукопашное"),
SIMPLE_RANGED("Простое дальнобойное"),
WAR_MELE("Воинское рукопашное"),
WAR_RANGED("Воинское дальнобойное"),
EXOTIC_MELE("Экзотическое рукопашное оружие"),
EXOTIC_RANGED("Экзотическое дальнобойное оружие");
MATERIAL_MELEE("Воинское рукопашное"),
MATERIAL_RANGED("Воинское дальнобойное");

private final String name;
}
Loading

0 comments on commit 8c6f9c0

Please sign in to comment.