organizationGeneralSettings.tsx 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import type {JsonFormObject} from 'sentry/components/forms/types';
  2. import ExternalLink from 'sentry/components/links/externalLink';
  3. import {t, tct} from 'sentry/locale';
  4. import ConfigStore from 'sentry/stores/configStore';
  5. import type {BaseRole} from 'sentry/types/organization';
  6. import slugify from 'sentry/utils/slugify';
  7. // Export route to make these forms searchable by label/help
  8. export const route = '/settings/:orgId/';
  9. const formGroups: JsonFormObject[] = [
  10. {
  11. // Form "section"/"panel"
  12. title: t('General'),
  13. fields: [
  14. {
  15. name: 'slug',
  16. type: 'string',
  17. required: true,
  18. label: t('Organization Slug'),
  19. help: t('A unique ID used to identify this organization'),
  20. transformInput: slugify,
  21. saveOnBlur: false,
  22. saveMessageAlertType: 'info',
  23. saveMessage: t(
  24. 'You will be redirected to the new organization slug after saving'
  25. ),
  26. },
  27. {
  28. name: 'name',
  29. type: 'string',
  30. required: true,
  31. label: t('Display Name'),
  32. help: t('A human-friendly name for the organization'),
  33. },
  34. {
  35. name: 'isEarlyAdopter',
  36. type: 'boolean',
  37. label: t('Early Adopter'),
  38. help: tct("Opt-in to [link:new features] before they're released to the public", {
  39. link: (
  40. <ExternalLink href="https://docs.sentry.io/product/accounts/early-adopter/" />
  41. ),
  42. }),
  43. visible: () => !ConfigStore.get('isSelfHostedErrorsOnly'),
  44. },
  45. {
  46. name: 'aiSuggestedSolution',
  47. type: 'boolean',
  48. label: t('AI Suggested Solution'),
  49. help: tct(
  50. 'Opt-in to [link:ai suggested solution] to get AI help on how to solve an issue.',
  51. {
  52. link: (
  53. <ExternalLink href="https://docs.sentry.io/product/issues/issue-details/ai-suggested-solution/" />
  54. ),
  55. }
  56. ),
  57. visible: () => !ConfigStore.get('isSelfHostedErrorsOnly'),
  58. },
  59. {
  60. name: 'uptimeAutodetection',
  61. type: 'boolean',
  62. label: t('Automatically Configure Uptime Alerts'),
  63. help: t('Detect most-used URLs for uptime monitoring.'),
  64. visible: ({features}) => features.has('uptime-settings'),
  65. },
  66. ],
  67. },
  68. {
  69. title: 'Membership',
  70. fields: [
  71. {
  72. name: 'defaultRole',
  73. type: 'select',
  74. required: true,
  75. label: t('Default Role'),
  76. // seems weird to have choices in initial form data
  77. choices: ({initialData} = {}) =>
  78. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  79. help: t('The default role new members will receive'),
  80. disabled: ({access}) => !access.has('org:admin'),
  81. },
  82. {
  83. name: 'openMembership',
  84. type: 'boolean',
  85. required: true,
  86. label: t('Open Membership'),
  87. help: t('Allow organization members to freely join any team'),
  88. },
  89. {
  90. name: 'eventsMemberAdmin',
  91. type: 'boolean',
  92. label: t('Let Members Delete Events'),
  93. help: t(
  94. 'Allow members to delete events (including the delete & discard action) by granting them the `event:admin` scope.'
  95. ),
  96. },
  97. {
  98. name: 'alertsMemberWrite',
  99. type: 'boolean',
  100. label: t('Let Members Create and Edit Alerts'),
  101. help: t(
  102. 'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
  103. ),
  104. },
  105. {
  106. name: 'attachmentsRole',
  107. type: 'select',
  108. choices: ({initialData = {}}) =>
  109. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  110. label: t('Attachments Access'),
  111. help: t(
  112. 'Role required to download event attachments, such as native crash reports or log files.'
  113. ),
  114. visible: ({features}) => features.has('event-attachments'),
  115. },
  116. {
  117. name: 'debugFilesRole',
  118. type: 'select',
  119. choices: ({initialData = {}}) =>
  120. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  121. label: t('Debug Files Access'),
  122. help: t(
  123. 'Role required to download debug information files, proguard mappings and source maps.'
  124. ),
  125. },
  126. ],
  127. },
  128. ];
  129. export default formGroups;