forked from Cutlery/immich
		
	* feat(server,web,mobile): Add optional password option for share links. Signed-off-by: jarvis2f <137974272+jarvis2f@users.noreply.github.com> * feat(server,web): Update shared-link.controller and page.svelte for improved cookie handling and metadata updates. Signed-off-by: jarvis2f <137974272+jarvis2f@users.noreply.github.com> --------- Signed-off-by: jarvis2f <137974272+jarvis2f@users.noreply.github.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.7 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 SharedLinkApi
 | 
						|
void main() {
 | 
						|
  // final instance = SharedLinkApi();
 | 
						|
 | 
						|
  group('tests for SharedLinkApi', () {
 | 
						|
    //Future<List<AssetIdsResponseDto>> addSharedLinkAssets(String id, AssetIdsDto assetIdsDto, { String key }) async
 | 
						|
    test('test addSharedLinkAssets', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<SharedLinkResponseDto> createSharedLink(SharedLinkCreateDto sharedLinkCreateDto) async
 | 
						|
    test('test createSharedLink', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<List<SharedLinkResponseDto>> getAllSharedLinks() async
 | 
						|
    test('test getAllSharedLinks', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<SharedLinkResponseDto> getMySharedLink({ String password, String token, String key }) async
 | 
						|
    test('test getMySharedLink', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<SharedLinkResponseDto> getSharedLinkById(String id) async
 | 
						|
    test('test getSharedLinkById', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future removeSharedLink(String id) async
 | 
						|
    test('test removeSharedLink', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<List<AssetIdsResponseDto>> removeSharedLinkAssets(String id, AssetIdsDto assetIdsDto, { String key }) async
 | 
						|
    test('test removeSharedLinkAssets', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    //Future<SharedLinkResponseDto> updateSharedLink(String id, SharedLinkEditDto sharedLinkEditDto) async
 | 
						|
    test('test updateSharedLink', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
  });
 | 
						|
}
 |