mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	* feat(web): onboarding * feat: openapi * feat: modulization * feat: page advancing * Animation * Add storage templaete settings * sql * more style * Theme * information and styling * hide/show table * Styling * Update user property * fix test * fix test: * fix e2e * test * Update web/src/lib/components/onboarding-page/onboarding-hello.svelte Co-authored-by: bo0tzz <git@bo0tzz.me> * naming * use System Metadata * better return type * onboarding using server metadata * revert previous changes in user entity * sql * test web * fix test server * server/web test * more test * consolidate color theme change logic * consolidate save button to storage template * merge main * fix web --------- Co-authored-by: bo0tzz <git@bo0tzz.me>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
//
 | 
						|
// AUTO-GENERATED FILE, DO NOT MODIFY!
 | 
						|
//
 | 
						|
// @dart=2.12
 | 
						|
 | 
						|
// ignore_for_file: unused_element, unused_import
 | 
						|
// ignore_for_file: always_put_required_named_parameters_first
 | 
						|
// ignore_for_file: constant_identifier_names
 | 
						|
// ignore_for_file: lines_longer_than_80_chars
 | 
						|
 | 
						|
import 'package:openapi/api.dart';
 | 
						|
import 'package:test/test.dart';
 | 
						|
 | 
						|
// tests for ServerConfigDto
 | 
						|
void main() {
 | 
						|
  // final instance = ServerConfigDto();
 | 
						|
 | 
						|
  group('test ServerConfigDto', () {
 | 
						|
    // String externalDomain
 | 
						|
    test('to test the property `externalDomain`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // bool isInitialized
 | 
						|
    test('to test the property `isInitialized`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // bool isOnboarded
 | 
						|
    test('to test the property `isOnboarded`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String loginPageMessage
 | 
						|
    test('to test the property `loginPageMessage`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String oauthButtonText
 | 
						|
    test('to test the property `oauthButtonText`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // int trashDays
 | 
						|
    test('to test the property `trashDays`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
  });
 | 
						|
 | 
						|
}
 |