Skip to content

Commit

Permalink
Merge pull request #1141 from DroidKaigi/add-achievement-repository-t…
Browse files Browse the repository at this point in the history
…o-bean-def

Add missing AchievementRepository bean def
  • Loading branch information
ry-itto authored Sep 11, 2023
2 parents aa2be0a + 3b9aecc commit 53e7633
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = DroidKaigi2023/DroidKaigi2023.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"DroidKaigi2023/Preview Content\"";
Expand Down Expand Up @@ -490,6 +491,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = DroidKaigi2023/DroidKaigi2023.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"DroidKaigi2023/Preview Content\"";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ package io.github.droidkaigi.confsched2023.data

import de.jensklingenberg.ktorfit.Ktorfit
import io.github.droidkaigi.confsched2023.data.achievements.AchievementsDataStore
import io.github.droidkaigi.confsched2023.data.achievements.DefaultAchievementRepository
import io.github.droidkaigi.confsched2023.data.auth.AuthApi
import io.github.droidkaigi.confsched2023.data.auth.DefaultAuthApi
import io.github.droidkaigi.confsched2023.data.contributors.AchievementRepository
import io.github.droidkaigi.confsched2023.data.contributors.ContributorsApiClient
import io.github.droidkaigi.confsched2023.data.contributors.DefaultContributorsApiClient
import io.github.droidkaigi.confsched2023.data.contributors.DefaultContributorsRepository
Expand Down Expand Up @@ -115,6 +117,7 @@ public val dataModule: Module = module {
singleOf(::DefaultStaffApiClient) bind StaffApiClient::class

singleOf(::NetworkService)
singleOf(::DefaultAchievementRepository) bind AchievementRepository::class
singleOf(::DefaultSessionsRepository) bind SessionsRepository::class
singleOf(::DefaultContributorsRepository) bind ContributorsRepository::class
singleOf(::DefaultStaffRepository) bind StaffRepository::class
Expand Down

0 comments on commit 53e7633

Please sign in to comment.