Skip to content

Commit

Permalink
fix(mobile-messaging): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
riskpp committed Jul 22, 2024
1 parent 471fa6c commit 96dbde6
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin {
@Cordova()
fetchInboxMessages(token: string, externalUserId: string, filterOptions: MMInboxFilterOptions): Promise<MMInbox> {
return;
};
}

/**
* Fetch mobile inbox without token from the server.
Expand All @@ -645,7 +645,7 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin {
@Cordova()
fetchInboxMessagesWithoutToken(externalUserId: string, filterOptions: MMInboxFilterOptions): Promise<MMInbox> {
return;
};
}

/**
* Asynchronously marks inbox messages as seen
Expand All @@ -658,6 +658,5 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin {
@Cordova()
setInboxMessagesSeen(externalUserId: string, messageIds: string[]): Promise<string[]> {
return;
};

}
}

0 comments on commit 96dbde6

Please sign in to comment.