Профиль, редактирование без аватара

This commit is contained in:
Халимов Рустам
2026-04-16 15:41:22 +03:00
parent 8409c51842
commit cea3f4d669
45 changed files with 1063 additions and 178 deletions

View File

@@ -23,7 +23,11 @@ object ProfileModule {
@Provides
@Singleton
fun provideProfileRepository(api: ProfileApi, context: Context): ProfileRepository {
return ProfileRepositoryImpl(api, context)
fun provideProfileRepository(
api: ProfileApi,
context: Context,
serverConfig: core.network.ServerConfig
): ProfileRepository {
return ProfileRepositoryImpl(api, context, serverConfig)
}
}