Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge #1

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SavingsAccountRepositoryImp @Inject constructor(private val dataManagerSav
groupId: Int,
productId: Int
): Observable<SavingProductsTemplate> {
return getGroupSavingsAccountTemplateByProduct(groupId, productId)
return dataManagerSavings.getGroupSavingsAccountTemplateByProduct(groupId, productId)
}

override fun createSavingsAccount(savingsPayload: SavingsPayload?): Observable<Savings> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.mifos.feature.note

import android.util.Log
import android.widget.Toast
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ fun Navigation(

settingsScreen(
navigateBack = navController::popBackStack,
navigateToLoginScreen = {},
navigateToLoginScreen = { },
changePasscode = { },
languageChanged = { },
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ import com.mifos.feature.settings.syncSurvey.SyncSurveysDialogRepository
import com.mifos.feature.settings.syncSurvey.SyncSurveysDialogRepositoryImp
import com.mifos.mifosxdroid.activity.login.LoginRepository
import com.mifos.mifosxdroid.activity.login.LoginRepositoryImp
import com.mifos.mifosxdroid.online.activate.ActivateRepository
import com.mifos.mifosxdroid.online.activate.ActivateRepositoryImp
import com.mifos.mifosxdroid.online.centerlist.CenterListRepository
import com.mifos.mifosxdroid.online.centerlist.CenterListRepositoryImp
import com.mifos.mifosxdroid.online.collectionsheet.CollectionSheetRepository
Expand Down Expand Up @@ -82,15 +80,6 @@ class RepositoryModule {
return CenterListRepositoryImp(dataManagerCenter)
}

@Provides
fun providesActivateRepository(
dataManagerClient: DataManagerClient,
dataManagerCenter: DataManagerCenter,
dataManagerGroups: DataManagerGroups
): ActivateRepository {
return ActivateRepositoryImp(dataManagerClient, dataManagerCenter, dataManagerGroups)
}

@Provides
fun providesSavingsAccountSummaryRepository(dataManagerSavings: DataManagerSavings): SavingsAccountSummaryRepository {
return SavingsAccountSummaryRepositoryImp(dataManagerSavings)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading