mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
chore(deps): bump all (#294)
This commit is contained in:
parent
1979d924c9
commit
38cf2ff549
69 changed files with 4681 additions and 3804 deletions
|
|
@ -24,7 +24,7 @@ describe("UsersService", () => {
|
|||
service = module.get<UsersService>(UsersService);
|
||||
userRepository = module.get<UserRepository>(UserRepository);
|
||||
importSpotifyJobService = module.get<JobService<IImportSpotifyJob>>(
|
||||
ImportSpotifyJob.ServiceProvider.provide
|
||||
ImportSpotifyJob.ServiceProvider.provide,
|
||||
);
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export class UsersService {
|
|||
constructor(
|
||||
private readonly userRepository: UserRepository,
|
||||
@ImportSpotifyJob.Inject()
|
||||
private readonly importSpotifyJobService: JobService<IImportSpotifyJob>
|
||||
private readonly importSpotifyJobService: JobService<IImportSpotifyJob>,
|
||||
) {}
|
||||
|
||||
async findById(id: string): Promise<User> {
|
||||
|
|
@ -59,7 +59,7 @@ export class UsersService {
|
|||
|
||||
async updateSpotifyConnection(
|
||||
user: User,
|
||||
spotify: SpotifyConnection
|
||||
spotify: SpotifyConnection,
|
||||
): Promise<void> {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
user.spotify = spotify;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue