Skip to content

Commit

Permalink
refactor: [#796] minor variable renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-nt committed Jan 16, 2025
1 parent ef0c1e7 commit ae1e6a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ impl ListingService {
.authorize(ACTION::GetUserProfiles, maybe_user_id)
.await?;

let users = self.user_profile_repository.get_all_user_profiles().await?;
let user_profiles = self.user_profile_repository.get_all_user_profiles().await?;

Ok(users)
Ok(user_profiles)
}
}

Expand Down

0 comments on commit ae1e6a9

Please sign in to comment.