mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
send offline message
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { SyncMessageRepositoryService } from 'src/app/module/chat/data/service/sync-repository/sync-message-repository.service'
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class SyncLocalMessageService {
|
||||
|
||||
constructor(
|
||||
private SyncMessageRepositoryService: SyncMessageRepositoryService
|
||||
) { }
|
||||
|
||||
|
||||
async execute() {
|
||||
return this.SyncMessageRepositoryService.sendLocalMessages()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user