mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 01:11:07 +03:00
feat(server): better api error messages (for unhandled exceptions) (#4817)
* feat(server): better error messages * chore: open api * chore: remove debug log * fix: syntax error * fix: e2e test
This commit is contained in:
20
mobile/openapi/test/api_key_api_test.dart
generated
20
mobile/openapi/test/api_key_api_test.dart
generated
@@ -17,28 +17,28 @@ void main() {
|
||||
// final instance = APIKeyApi();
|
||||
|
||||
group('tests for APIKeyApi', () {
|
||||
//Future<APIKeyCreateResponseDto> createKey(APIKeyCreateDto aPIKeyCreateDto) async
|
||||
test('test createKey', () async {
|
||||
//Future<APIKeyCreateResponseDto> createApiKey(APIKeyCreateDto aPIKeyCreateDto) async
|
||||
test('test createApiKey', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
//Future deleteKey(String id) async
|
||||
test('test deleteKey', () async {
|
||||
//Future deleteApiKey(String id) async
|
||||
test('test deleteApiKey', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
//Future<APIKeyResponseDto> getKey(String id) async
|
||||
test('test getKey', () async {
|
||||
//Future<APIKeyResponseDto> getApiKey(String id) async
|
||||
test('test getApiKey', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
//Future<List<APIKeyResponseDto>> getKeys() async
|
||||
test('test getKeys', () async {
|
||||
//Future<List<APIKeyResponseDto>> getApiKeys() async
|
||||
test('test getApiKeys', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
//Future<APIKeyResponseDto> updateKey(String id, APIKeyUpdateDto aPIKeyUpdateDto) async
|
||||
test('test updateKey', () async {
|
||||
//Future<APIKeyResponseDto> updateApiKey(String id, APIKeyUpdateDto aPIKeyUpdateDto) async
|
||||
test('test updateApiKey', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user