Package | Description |
---|---|
inix.mapper | |
inix.model | |
inix.Repo | |
inix.service |
Modifier and Type | Method and Description |
---|---|
abstract Post |
PostMapper.map(PostRequest postRequest,
Guild guild,
User user) |
Modifier and Type | Method and Description |
---|---|
(package private) java.lang.Integer |
PostMapper.commentCount(Post post) |
(package private) java.lang.String |
PostMapper.getDuration(Post post) |
Comment |
CommentMapper.map(CommentsDto commentsDto,
Post post,
User user) |
abstract PostResponse |
PostMapper.mapToDto(Post post) |
Modifier and Type | Method and Description |
---|---|
default java.lang.Integer |
GuildMapper.mapPosts(java.util.List<Post> postCount) |
Modifier and Type | Field and Description |
---|---|
private Post |
Comment.post |
private @NotNull Post |
Vote.post |
Modifier and Type | Field and Description |
---|---|
private java.util.List<Post> |
Guild.posts |
Modifier and Type | Method and Description |
---|---|
java.util.List<Post> |
PostRepo.findAllByGuild(Guild guild) |
java.util.List<Post> |
PostRepo.findByUser(User user) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Comment> |
CommentRepo.findByPost(Post post) |
java.util.Optional<Vote> |
VoteRepo.findTopByPostAndUserOrderByVoteIdDesc(Post post,
User currentUser) |
Modifier and Type | Method and Description |
---|---|
private Vote |
VoteService.mapToVote(VoteDto voteDto,
Post post) |