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:
Jason Rasmussen
2023-01-09 16:32:58 -05:00
committed by GitHub
parent 5999af6c78
commit bd838a71d1
66 changed files with 861 additions and 167 deletions

View File

@@ -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
});
});

View File

@@ -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
});

View File

@@ -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

View File

@@ -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

View 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
});
});
}