organizationGeneralSettings.tsx 4.0 KB

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