mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { SystemConfig } from 'src/config';
 | 
						|
import { DeepPartial } from 'typeorm';
 | 
						|
 | 
						|
export const systemConfigStub = {
 | 
						|
  enabled: {
 | 
						|
    oauth: {
 | 
						|
      enabled: true,
 | 
						|
      autoRegister: true,
 | 
						|
      autoLaunch: false,
 | 
						|
      buttonText: 'OAuth',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  disabled: {
 | 
						|
    passwordLogin: {
 | 
						|
      enabled: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  oauthEnabled: {
 | 
						|
    oauth: {
 | 
						|
      enabled: true,
 | 
						|
      autoRegister: false,
 | 
						|
      autoLaunch: false,
 | 
						|
      buttonText: 'OAuth',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  oauthWithAutoRegister: {
 | 
						|
    oauth: {
 | 
						|
      enabled: true,
 | 
						|
      autoRegister: true,
 | 
						|
      autoLaunch: false,
 | 
						|
      buttonText: 'OAuth',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  oauthWithMobileOverride: {
 | 
						|
    oauth: {
 | 
						|
      enabled: true,
 | 
						|
      autoRegister: true,
 | 
						|
      mobileOverrideEnabled: true,
 | 
						|
      mobileRedirectUri: 'http://mobile-redirect',
 | 
						|
      buttonText: 'OAuth',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  oauthWithStorageQuota: {
 | 
						|
    oauth: {
 | 
						|
      enabled: true,
 | 
						|
      autoRegister: true,
 | 
						|
      defaultStorageQuota: 1,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  deleteDelay30: {
 | 
						|
    user: {
 | 
						|
      deleteDelay: 30,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  libraryWatchEnabled: {
 | 
						|
    library: {
 | 
						|
      watch: {
 | 
						|
        enabled: true,
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  libraryWatchDisabled: {
 | 
						|
    library: {
 | 
						|
      watch: {
 | 
						|
        enabled: false,
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  libraryScan: {
 | 
						|
    library: {
 | 
						|
      scan: {
 | 
						|
        enabled: true,
 | 
						|
        cronExpression: '0 0 * * *',
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  machineLearningDisabled: {
 | 
						|
    machineLearning: {
 | 
						|
      enabled: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
} satisfies Record<string, DeepPartial<SystemConfig>>;
 |