-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6857 from opengovsg/release_v6.85.0
build: release v6.85.0
- Loading branch information
Showing
99 changed files
with
5,422 additions
and
510 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
16 changes: 0 additions & 16 deletions
16
frontend/src/features/rollout-announcement/Announcements.tsx
This file was deleted.
Oops, something went wrong.
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
38 changes: 38 additions & 0 deletions
38
frontend/src/features/rollout-announcement/components/AnnouncementsFeatureList.tsx
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,38 @@ | ||
import { GUIDE_PAYMENTS_ENTRY } from '~constants/links' | ||
|
||
import { FeatureUpdateImage } from '~features/whats-new/FeatureUpdateList' | ||
|
||
import foldersDashboard from '../../whats-new/assets/folders_dashboard.svg' | ||
import PaymentsAnnouncementGraphic from '../assets/payments.json' | ||
|
||
export interface NewFeature { | ||
title: string | ||
description: string | ||
learnMoreLink?: string | ||
image: FeatureUpdateImage | ||
} | ||
// When updating this, remember to update the ROLLOUT_ANNOUNCEMENT_KEY_PREFIX with the new date | ||
// so admins will see new announcements. | ||
export const NEW_FEATURES: NewFeature[] = [ | ||
{ | ||
// Announcement date: 2023-10-31 | ||
title: 'Introducing Folders!', | ||
description: | ||
'Say hello to a new way of managing your forms! Create folders and organise your forms to find them easily later.', | ||
image: { | ||
url: foldersDashboard, | ||
alt: 'Dashboard page with folders', | ||
}, | ||
}, | ||
{ | ||
// Announcement date: 2023-05-31 | ||
title: 'Collect payments on your form', | ||
description: | ||
'Respondents can now pay for fees and services directly on your form! We integrate with Stripe to provide reliable payments and hassle-free reconciliations. Payment methods we support include debit / credit cards and PayNow.', | ||
learnMoreLink: GUIDE_PAYMENTS_ENTRY, | ||
image: { | ||
animationData: PaymentsAnnouncementGraphic, | ||
alt: 'Collect payments on your form', | ||
}, | ||
}, | ||
] |
Oops, something went wrong.