Skip to content

Commit

Permalink
feat(common,app,back): simple notification, remove join request
Browse files Browse the repository at this point in the history
  • Loading branch information
agjini committed Oct 10, 2024
1 parent 876768c commit 284c8ab
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 21 deletions.
8 changes: 2 additions & 6 deletions app/src/api/service/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ import {
LocationService,
CommunityService,
DEFAULT_TLS,
AppLogger,
ConversationService,
ConversationServiceClient
AppLogger
} from "@liane/common";
import { RNAppEnv } from "@/api/env";
import { AppStorage } from "@/api/storage";
Expand All @@ -37,7 +35,6 @@ export type AppServices = {
notification: NotificationService;
reminder: ReminderService;
community: CommunityService;
conversation: ConversationService;
};

const http = new HttpClient(RNAppEnv.baseUrl, logger as AppLogger, AppStorage);
Expand All @@ -52,6 +49,5 @@ export const CreateAppServices = (): AppServices => ({
location: new ReactNativeLocationService(RNAppEnv, AppStorage, http, DEFAULT_TLS),
routing: new RoutingServiceClient(http),
notification: new NotificationServiceClient(http),
community: new CommunityServiceClient(http),
conversation: new ConversationServiceClient(http)
community: new CommunityServiceClient(http)
});
14 changes: 0 additions & 14 deletions common/src/services/conversation.ts

This file was deleted.

1 change: 0 additions & 1 deletion common/src/services/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export * from "./rallying_point";
export * from "./liane";
export * from "./community";
export * from "./conversation";
export * from "./routing";
export * from "./location";
export * from "./location";
Expand Down

0 comments on commit 284c8ab

Please sign in to comment.