mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
feat(web,server): disable password login (#1223)
* feat(web,server): disable password login * chore: unit tests * chore: fix import * chore: linting * feat(cli): server command for enable/disable password login * chore: update docs * feat(web): confirm dialogue * chore: linting * chore: linting * chore: linting * chore: linting * chore: linting * chore: fix web test * chore: server unit tests
This commit is contained in:
@@ -21,6 +21,11 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool passwordLoginEnabled
|
||||
test('to test the property `passwordLoginEnabled`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String url
|
||||
test('to test the property `url`', () async {
|
||||
// TODO
|
||||
@@ -31,6 +36,11 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool autoLaunch
|
||||
test('to test the property `autoLaunch`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// List<String> assets (default value: const [])
|
||||
// List<AssetResponseDto> assets (default value: const [])
|
||||
test('to test the property `assets`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
5
mobile/openapi/test/system_config_dto_test.dart
generated
5
mobile/openapi/test/system_config_dto_test.dart
generated
@@ -26,6 +26,11 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// SystemConfigPasswordLoginDto passwordLogin
|
||||
test('to test the property `passwordLogin`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// SystemConfigStorageTemplateDto storageTemplate
|
||||
test('to test the property `storageTemplate`', () async {
|
||||
// TODO
|
||||
|
||||
@@ -51,6 +51,11 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool autoLaunch
|
||||
test('to test the property `autoLaunch`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool mobileOverrideEnabled
|
||||
test('to test the property `mobileOverrideEnabled`', () async {
|
||||
// TODO
|
||||
|
||||
27
mobile/openapi/test/system_config_password_login_dto_test.dart
generated
Normal file
27
mobile/openapi/test/system_config_password_login_dto_test.dart
generated
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// 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 SystemConfigPasswordLoginDto
|
||||
void main() {
|
||||
// final instance = SystemConfigPasswordLoginDto();
|
||||
|
||||
group('test SystemConfigPasswordLoginDto', () {
|
||||
// bool enabled
|
||||
test('to test the property `enabled`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user