diff --git a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/index.tsx b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/index.tsx index 40a2afaef7..a7b2e5dc45 100644 --- a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/index.tsx +++ b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/index.tsx @@ -60,6 +60,9 @@ const FlowStatus = () => { const subdomainLink = teamDomain && `https://${teamDomain}/${flowSlug}`; + // Currently Silvia + const slackMemberID = "U05KXM9DQ4B"; + const sendFlowStatusSlackNotification = async (status: FlowStatus) => { const skipTeamSlugs = [ "open-digital-planning", @@ -75,7 +78,7 @@ const FlowStatus = () => { online: ":large_green_circle:", offline: ":no_entry:", }; - const message = `${emoji[status]} *${teamSlug}/${flowSlug}* is now ${status} (@Silvia)`; + const message = `${emoji[status]} *${teamSlug}/${flowSlug}* is now ${status} (<@${slackMemberID}>)`; return axios.post( `${import.meta.env.VITE_APP_API_URL}/send-slack-notification`,