123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- import type {InstallWizardOptions} from 'sentry/views/admin/installWizard/index';
- export function InstallWizardFixture(params = {}): InstallWizardOptions {
- return {
- 'mail.use-tls': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.use-ssl': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.username': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.port': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'system.admin-email': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.password': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.from': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'system.url-prefix': {
- field: {
- disabledReason: 'diskPriority',
- required: true,
- disabled: true,
- allowEmpty: false,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'auth.allow-registration': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'beacon.anonymous': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- key: '',
- label: '',
- },
- },
- 'mail.host': {
- field: {
- disabledReason: undefined,
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- key: '',
- label: '',
- },
- },
- ...params,
- };
- }
|