1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import {t} from 'app/locale';
- import {Field, JsonFormObject} from 'app/views/settings/components/forms/type';
- // TODO: cleanup unused fields and exports
- // Export route to make these forms searchable by label/help
- export const route = '/settings/account/notifications/';
- export const fields: {[key: string]: Field} = {
- subscribeByDefault: {
- name: 'subscribeByDefault',
- type: 'boolean',
- label: t('Send Me Alerts'),
- // TODO(billy): Make this a real link
- help: t(
- 'Enable this to receive notifications for Alerts sent to your teams. You will always receive alerts configured to be sent directly to you.'
- ),
- },
- workflowNotifications: {
- name: 'workflowNotifications',
- type: 'radio',
- label: t('Send Me Workflow Notifications'),
- choices: [
- [0, t('Always')],
- [1, t('Only On Issues I Subscribe To')],
- [2, t('Never')],
- ],
- help: t('E.g. changes in issue assignment, resolution status, and comments.'),
- },
- weeklyReports: {
- // Form is not visible because currently not implemented
- name: 'weeklyReports',
- type: 'boolean',
- label: t('Send Me Weekly Reports'),
- help: t("Reports contain a summary of what's happened within your organization."),
- disabled: true,
- },
- deployNotifications: {
- name: 'deployNotifications',
- type: 'radio',
- label: t('Send Me Deploy Notifications'),
- choices: [
- [2, t('Always')],
- [3, t('Only On Deploys With My Commits')],
- [4, t('Never')],
- ],
- help: t('Deploy emails include release, environment and commit overviews.'),
- },
- personalActivityNotifications: {
- name: 'personalActivityNotifications',
- type: 'boolean',
- label: t('Notify Me About My Own Activity'),
- help: t('Enable this to receive notifications about your own actions on Sentry.'),
- },
- selfAssignOnResolve: {
- name: 'selfAssignOnResolve',
- type: 'boolean',
- label: t("Claim Unassigned Issues I've Resolved"),
- help: t("You'll receive notifications about any changes that happen afterwards."),
- },
- };
- const formGroups: JsonFormObject[] = [
- {
- title: t('Alerts'),
- fields: [fields.subscribeByDefault],
- },
- {
- title: t('Workflow Notifications'),
- fields: [fields.workflowNotifications],
- },
- {
- title: t('Email Routing'),
- fields: [],
- },
- {
- title: t('Weekly Reports'),
- fields: [],
- },
- {
- title: t('Deploy Notifications'),
- fields: [fields.deployNotifications],
- },
- {
- title: t('My Activity'),
- fields: [fields.personalActivityNotifications, fields.selfAssignOnResolve],
- },
- ];
- export default formGroups;
|