mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
94 lines
2.2 KiB
Dart
94 lines
2.2 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.18
|
|
|
|
// 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', () {
|
|
// External domain URL
|
|
// String externalDomain
|
|
test('to test the property `externalDomain`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether the server has been initialized
|
|
// bool isInitialized
|
|
test('to test the property `isInitialized`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether the admin has completed onboarding
|
|
// bool isOnboarded
|
|
test('to test the property `isOnboarded`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Login page message
|
|
// String loginPageMessage
|
|
test('to test the property `loginPageMessage`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether maintenance mode is active
|
|
// bool maintenanceMode
|
|
test('to test the property `maintenanceMode`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Map dark style URL
|
|
// String mapDarkStyleUrl
|
|
test('to test the property `mapDarkStyleUrl`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Map light style URL
|
|
// String mapLightStyleUrl
|
|
test('to test the property `mapLightStyleUrl`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// People min faces server default
|
|
// int minFaces
|
|
test('to test the property `minFaces`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// OAuth button text
|
|
// String oauthButtonText
|
|
test('to test the property `oauthButtonText`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether public user registration is enabled
|
|
// bool publicUsers
|
|
test('to test the property `publicUsers`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Number of days before trashed assets are permanently deleted
|
|
// int trashDays
|
|
test('to test the property `trashDays`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delay in days before deleted users are permanently removed
|
|
// int userDeleteDelay
|
|
test('to test the property `userDeleteDelay`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|