Skip to content

Commit 1cb494d

Browse files
ref(relay): Remove trusted relays field (#19628)
1 parent 7977d61 commit 1cb494d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/sentry/static/sentry/app/data/forms/organizationSecurityAndPrivacy.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,6 @@ const organizationSecurityAndPrivacy: JsonFormObject[] = [
7272
allowedValues: STORE_CRASH_REPORTS_VALUES,
7373
formatLabel: formatStoreCrashReports,
7474
},
75-
{
76-
name: 'trustedRelays',
77-
type: 'string',
78-
multiline: true,
79-
autosize: true,
80-
maxRows: 10,
81-
placeholder: t('Paste the relay public keys here'),
82-
label: t('Trusted Relays'),
83-
help: t(
84-
'The list of relay public keys that should be trusted. Any relay in this list will be permitted to access org and project configs. Separate multiple entries with a newline.'
85-
),
86-
getValue: val => extractMultilineFields(val),
87-
setValue: val => (val && typeof val.join === 'function' && val.join('\n')) || '',
88-
visible: ({features}) => features.has('relay'),
89-
},
9075
{
9176
name: 'allowJoinRequests',
9277
type: 'boolean',

0 commit comments

Comments
 (0)