Step 3 + Review
This commit is contained in:
committed by
Peter Steinberger
parent
e9d691d472
commit
7870ce8177
@@ -80,7 +80,9 @@ export function buildCronPayload(form: CronFormState) {
|
||||
| "discord"
|
||||
| "slack"
|
||||
| "signal"
|
||||
| "imessage";
|
||||
| "imessage"
|
||||
| "msteams"
|
||||
| "bluebubbles";
|
||||
to?: string;
|
||||
timeoutSeconds?: number;
|
||||
} = { kind: "agentTurn", message };
|
||||
|
||||
@@ -332,7 +332,8 @@ export type CronPayload =
|
||||
| "slack"
|
||||
| "signal"
|
||||
| "imessage"
|
||||
| "msteams";
|
||||
| "msteams"
|
||||
| "bluebubbles";
|
||||
to?: string;
|
||||
bestEffortDeliver?: boolean;
|
||||
};
|
||||
|
||||
@@ -28,7 +28,8 @@ export type CronFormState = {
|
||||
| "slack"
|
||||
| "signal"
|
||||
| "imessage"
|
||||
| "msteams";
|
||||
| "msteams"
|
||||
| "bluebubbles";
|
||||
to: string;
|
||||
timeoutSeconds: string;
|
||||
postToMainPrefix: string;
|
||||
|
||||
@@ -88,7 +88,7 @@ function resolveChannelOrder(snapshot: ChannelsStatusSnapshot | null): ChannelKe
|
||||
if (snapshot?.channelOrder?.length) {
|
||||
return snapshot.channelOrder;
|
||||
}
|
||||
return ["whatsapp", "telegram", "discord", "slack", "signal", "imessage"];
|
||||
return ["whatsapp", "telegram", "discord", "slack", "signal", "imessage", "bluebubbles"];
|
||||
}
|
||||
|
||||
function renderChannel(
|
||||
|
||||
@@ -199,6 +199,7 @@ export function renderCron(props: CronProps) {
|
||||
<option value="signal">Signal</option>
|
||||
<option value="imessage">iMessage</option>
|
||||
<option value="msteams">MS Teams</option>
|
||||
<option value="bluebubbles">BlueBubbles</option>
|
||||
</select>
|
||||
</label>
|
||||
<label class="field">
|
||||
|
||||
Reference in New Issue
Block a user