-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use title/content notice type for rewired shutdown
- Loading branch information
Showing
4 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { TitleContentNotice } from "@spoke/spoke-codegen"; | ||
|
||
const shutdownNoticeContent = `Politics Rewired is winding down operations. Text messages will no longer be deliverable after **November 15, 2023** and your instance will no longer be available after **November 22, 2023**. Please find more details in our transition document here: [https://www.politicsrewired.com](https://www.politicsrewired.com) | ||
Thank you for choosing us for your texting outreach, and we wish you the best of luck with all of your future organizing work ❤️`; | ||
|
||
export const SpokeRewiredShutdownNotice: TitleContentNotice = { | ||
__typename: "TitleContentNotice", | ||
id: "shutdown-notice", | ||
title: "Spoke Rewired Shutdown", | ||
avatarIcon: "announcement", | ||
avatarColor: "error", | ||
markdownContent: shutdownNoticeContent | ||
}; | ||
|
||
export default SpokeRewiredShutdownNotice; |