mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
75 lines
1.8 KiB
Dart
75 lines
1.8 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 SessionsApi
|
|
void main() {
|
|
// final instance = SessionsApi();
|
|
|
|
group('tests for SessionsApi', () {
|
|
// Create a session
|
|
//
|
|
// Create a session as a child to the current session. This endpoint is used for casting.
|
|
//
|
|
//Future<SessionCreateResponseDto> createSession(SessionCreateDto sessionCreateDto) async
|
|
test('test createSession', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete all sessions
|
|
//
|
|
// Delete all sessions for the user. This will not delete the current session.
|
|
//
|
|
//Future deleteAllSessions() async
|
|
test('test deleteAllSessions', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete a session
|
|
//
|
|
// Delete a specific session by id.
|
|
//
|
|
//Future deleteSession(String id) async
|
|
test('test deleteSession', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Retrieve sessions
|
|
//
|
|
// Retrieve a list of sessions for the user.
|
|
//
|
|
//Future<List<SessionResponseDto>> getSessions() async
|
|
test('test getSessions', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Lock a session
|
|
//
|
|
// Lock a specific session by id.
|
|
//
|
|
//Future lockSession(String id) async
|
|
test('test lockSession', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Update a session
|
|
//
|
|
// Update a specific session identified by id.
|
|
//
|
|
//Future<SessionResponseDto> updateSession(String id, SessionUpdateDto sessionUpdateDto) async
|
|
test('test updateSession', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|