mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
57 lines
1.7 KiB
Dart
57 lines
1.7 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 ActivitiesApi
|
|
void main() {
|
|
// final instance = ActivitiesApi();
|
|
|
|
group('tests for ActivitiesApi', () {
|
|
// Create an activity
|
|
//
|
|
// Create a like or a comment for an album, or an asset in an album.
|
|
//
|
|
//Future<ActivityResponseDto> createActivity(ActivityCreateDto activityCreateDto) async
|
|
test('test createActivity', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete an activity
|
|
//
|
|
// Removes a like or comment from a given album or asset in an album.
|
|
//
|
|
//Future deleteActivity(String id) async
|
|
test('test deleteActivity', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List all activities
|
|
//
|
|
// Returns a list of activities for the selected asset or album. The activities are returned in sorted order, with the oldest activities appearing first.
|
|
//
|
|
//Future<List<ActivityResponseDto>> getActivities(String albumId, { String assetId, ReactionLevel level, ReactionType type, String userId }) async
|
|
test('test getActivities', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Retrieve activity statistics
|
|
//
|
|
// Returns the number of likes and comments for a given album or asset in an album.
|
|
//
|
|
//Future<ActivityStatisticsResponseDto> getActivityStatistics(String albumId, { String assetId }) async
|
|
test('test getActivityStatistics', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|