You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/components/plugins/reference-setting-modal/auto-update-setting/config.ts

10 lines
362 B
TypeScript

import type { AutoUpdateConfig } from './types'
import { AUTO_UPDATE_MODE, AUTO_UPDATE_STRATEGY } from './types'
export const defaultValue: AutoUpdateConfig = {
strategy_setting: AUTO_UPDATE_STRATEGY.fixOnly, // For test
upgrade_time_of_day: 0,
upgrade_mode: AUTO_UPDATE_MODE.exclude, // For test
exclude_plugins: ['a', 'c'],
include_plugins: ['b'],
}