mirror of
https://github.com/immich-app/immich.git
synced 2024-12-12 11:45:38 +02:00
a9859bc029
* Added dto, logic to insert description and web implementation * create text field and update on remote database * Update description and save changes * styling * fix web test * fix server test * preserve description on metadata extraction job run * handle exif info is null situation * pr feedback * format openapi spec * update createAssetDto * refactor logic to service * move files * only owner can update description * Render description correctly in shared album * Render description correctly in shared link * disable description edit for not owner of asset on mobile * localization and clean up * fix test * Uses providers for description text (#2244) * uses providers for description text * comments * fixes initial data setting * fixes notifier --------- Co-authored-by: martyfuhry <martyfuhry@gmail.com>
123 lines
2.5 KiB
Dart
Generated
123 lines
2.5 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 ExifResponseDto
|
|
void main() {
|
|
// final instance = ExifResponseDto();
|
|
|
|
group('test ExifResponseDto', () {
|
|
// int fileSizeInByte
|
|
test('to test the property `fileSizeInByte`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String make
|
|
test('to test the property `make`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String model
|
|
test('to test the property `model`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num exifImageWidth
|
|
test('to test the property `exifImageWidth`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num exifImageHeight
|
|
test('to test the property `exifImageHeight`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String orientation
|
|
test('to test the property `orientation`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime dateTimeOriginal
|
|
test('to test the property `dateTimeOriginal`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime modifyDate
|
|
test('to test the property `modifyDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String timeZone
|
|
test('to test the property `timeZone`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String lensModel
|
|
test('to test the property `lensModel`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num fNumber
|
|
test('to test the property `fNumber`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num focalLength
|
|
test('to test the property `focalLength`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num iso
|
|
test('to test the property `iso`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String exposureTime
|
|
test('to test the property `exposureTime`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num latitude
|
|
test('to test the property `latitude`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// num longitude
|
|
test('to test the property `longitude`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String city
|
|
test('to test the property `city`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String state
|
|
test('to test the property `state`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String country
|
|
test('to test the property `country`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|