|
|
|
@ -5,7 +5,6 @@ import { MessageParams } from '../Message';
|
|
|
|
|
|
|
|
|
|
interface GroupInvitationMessageParams extends MessageParams {
|
|
|
|
|
serverAddress: string;
|
|
|
|
|
channelId: number;
|
|
|
|
|
serverName: string;
|
|
|
|
|
// if there is an expire timer set for the conversation, we need to set it.
|
|
|
|
|
// otherwise, it will disable the expire timer on the receiving side.
|
|
|
|
@ -14,14 +13,12 @@ interface GroupInvitationMessageParams extends MessageParams {
|
|
|
|
|
|
|
|
|
|
export class GroupInvitationMessage extends DataMessage {
|
|
|
|
|
private readonly serverAddress: string;
|
|
|
|
|
private readonly channelId: number;
|
|
|
|
|
private readonly serverName: string;
|
|
|
|
|
private readonly expireTimer?: number;
|
|
|
|
|
|
|
|
|
|
constructor(params: GroupInvitationMessageParams) {
|
|
|
|
|
super({ timestamp: params.timestamp, identifier: params.identifier });
|
|
|
|
|
this.serverAddress = params.serverAddress;
|
|
|
|
|
this.channelId = params.channelId;
|
|
|
|
|
this.serverName = params.serverName;
|
|
|
|
|
this.expireTimer = params.expireTimer;
|
|
|
|
|
}
|
|
|
|
@ -29,7 +26,6 @@ export class GroupInvitationMessage extends DataMessage {
|
|
|
|
|
public dataProto(): SignalService.DataMessage {
|
|
|
|
|
const groupInvitation = new SignalService.DataMessage.GroupInvitation({
|
|
|
|
|
serverAddress: this.serverAddress,
|
|
|
|
|
channelId: this.channelId,
|
|
|
|
|
serverName: this.serverName,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|