Skip to content

Commit

Permalink
readOnly Keyword Has Been Removed from AdminUserAuthServiceImpl a…
Browse files Browse the repository at this point in the history
…nd `UserAuthServiceImpl` Services Because Services Have Insert/Update Transactions (#72)
  • Loading branch information
agitrubard authored Jun 10, 2023
1 parent 19ff7dd commit eaf0718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
@Service
@RequiredArgsConstructor
@Transactional(readOnly = true)
@Transactional
class AdminUserAuthServiceImpl implements AdminUserAuthService {

private final AdminUserRepository adminUserRepository;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

@Service
@RequiredArgsConstructor
@Transactional(readOnly = true)
@Transactional
class UserAuthServiceImpl implements UserAuthService {

private final UserRepository userRepository;
Expand Down

0 comments on commit eaf0718

Please sign in to comment.