|
@ -3,6 +3,7 @@ package app.controllers.server; |
|
|
import app.annotations.enums.AuthMethod; |
|
|
import app.annotations.enums.AuthMethod; |
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
import app.entities.Stats; |
|
|
import app.entities.Stats; |
|
|
|
|
|
import app.entities.report.ReportBody; |
|
|
import app.entities.report.ReportType; |
|
|
import app.entities.report.ReportType; |
|
|
import app.entities.server.request.ServerRequestBody; |
|
|
import app.entities.server.request.ServerRequestBody; |
|
|
import app.services.ProfileService; |
|
|
import app.services.ProfileService; |
|
@ -61,11 +62,4 @@ public class ServerUpdaterController { |
|
|
return ResponseEntity.status(HttpStatus.OK).body( |
|
|
return ResponseEntity.status(HttpStatus.OK).body( |
|
|
reportService.createReport(ReportType.IN_GAME, profileService.GetProfile(body.getAuthor_steam64(), "permition,steam_data"), profileService.GetProfile(body.getReported_steam64(), "permition"), body.getReason())); |
|
|
reportService.createReport(ReportType.IN_GAME, profileService.GetProfile(body.getAuthor_steam64(), "permition,steam_data"), profileService.GetProfile(body.getReported_steam64(), "permition"), body.getReason())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Data |
|
|
|
|
|
public class ReportBody { |
|
|
|
|
|
private String author_steam64; |
|
|
|
|
|
private String reported_steam64 = null; |
|
|
|
|
|
private String reason; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|