Update wording for mobile push notifications timing choices (#3253)

# What this PR does
Update wording for mobile push notifications timing choices

## Which issue(s) this PR fixes

## Checklist

- [ ] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)
This commit is contained in:
Yulya Artyukhina 2023-11-02 12:37:28 +01:00 committed by GitHub
parent 8aa99be75f
commit 2edae70b04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Changed
- Change wording for push notifications timing choices @Ferril ([#3253](https://github.com/grafana/oncall/pull/3253))
## v1.3.51 (2023-11-02)
### Fixed

View file

@ -171,11 +171,11 @@ class MobileAppUserSettings(models.Model):
ONE_DAY_IN_SECONDS = TWELVE_HOURS_IN_SECONDS * 2
NOTIFICATION_TIMING_CHOICES = (
(FIFTEEN_MINUTES_IN_SECONDS, "fifteen minutes before"),
(ONE_HOUR_IN_SECONDS, "one hour before"),
(SIX_HOURS_IN_SECONDS, "six hours before"),
(TWELVE_HOURS_IN_SECONDS, "twelve hours before"),
(ONE_DAY_IN_SECONDS, "one day before"),
(FIFTEEN_MINUTES_IN_SECONDS, "15 minutes before"),
(ONE_HOUR_IN_SECONDS, "1 hour before"),
(SIX_HOURS_IN_SECONDS, "6 hours before"),
(TWELVE_HOURS_IN_SECONDS, "12 hours before"),
(ONE_DAY_IN_SECONDS, "1 day before"),
)
going_oncall_notification_timing = JSONField(default=default_notification_timing_options)