organizationGeneralSettings.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. label: t('Default Role'),
  75. // seems weird to have choices in initial form data
  76. choices: ({initialData} = {}) =>
  77. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  78. help: t('The default role new members will receive'),
  79. disabled: ({access}) => !access.has('org:admin'),
  80. },
  81. {
  82. name: 'openMembership',
  83. type: 'boolean',
  84. label: t('Open Membership'),
  85. help: t('Allow organization members to freely join any team'),
  86. },
  87. {
  88. name: 'allowMemberProjectCreation',
  89. type: 'boolean',
  90. label: t('Let Members Create Projects'),
  91. help: t('Allow organization members to create and configure new projects.'),
  92. },
  93. {
  94. name: 'eventsMemberAdmin',
  95. type: 'boolean',
  96. label: t('Let Members Delete Events'),
  97. help: t(
  98. 'Allow members to delete events (including the delete & discard action) by granting them the `event:admin` scope.'
  99. ),
  100. },
  101. {
  102. name: 'alertsMemberWrite',
  103. type: 'boolean',
  104. label: t('Let Members Create and Edit Alerts'),
  105. help: t(
  106. 'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
  107. ),
  108. },
  109. {
  110. name: 'attachmentsRole',
  111. type: 'select',
  112. choices: ({initialData = {}}) =>
  113. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  114. label: t('Attachments Access'),
  115. help: t(
  116. 'Role required to download event attachments, such as native crash reports or log files.'
  117. ),
  118. visible: ({features}) => features.has('event-attachments'),
  119. },
  120. {
  121. name: 'debugFilesRole',
  122. type: 'select',
  123. choices: ({initialData = {}}) =>
  124. initialData?.orgRoleList?.map((r: BaseRole) => [r.id, r.name]) ?? [],
  125. label: t('Debug Files Access'),
  126. help: t(
  127. 'Role required to download debug information files, proguard mappings and source maps.'
  128. ),
  129. },
  130. ],
  131. },
  132. ];
  133. export default formGroups;