mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	* feat: libraries Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			362 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			362 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { LibraryResponseDto } from '@app/domain';
 | 
						|
import request from 'supertest';
 | 
						|
 | 
						|
export const libraryApi = {
 | 
						|
  getAll: async (server: any, accessToken: string) => {
 | 
						|
    const { body, status } = await request(server).get(`/library/`).set('Authorization', `Bearer ${accessToken}`);
 | 
						|
    expect(status).toBe(200);
 | 
						|
    return body as LibraryResponseDto[];
 | 
						|
  },
 | 
						|
};
 |