Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/NewFit/NewFit-Backend in…
Browse files Browse the repository at this point in the history
…to release/dev
  • Loading branch information
Sangwook02 committed Dec 29, 2023
2 parents 1e94b34 + 77b20dd commit a207dbd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ public class AuthorityGymResponse {

private final Long authorityId;
private final String gymName;
private final Boolean accepted;

public AuthorityGymResponse(Authority authority) {
this(authority.getId(), authority.getGym().getName());
this(authority.getId(), authority.getGym().getName(), authority.getAccepted());
}
}

0 comments on commit a207dbd

Please sign in to comment.