serializers - posts: no need Promise wrapping
This commit is contained in:
		
							parent
							
								
									0ee6d65921
								
							
						
					
					
						commit
						7553c6dd38
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -22,13 +22,13 @@ import rap from '@prezzemolo/rap';
 | 
			
		|||
 * @param options? serialize options
 | 
			
		||||
 * @return response
 | 
			
		||||
 */
 | 
			
		||||
const self = (
 | 
			
		||||
const self = async (
 | 
			
		||||
	post: string | mongo.ObjectID | IPost,
 | 
			
		||||
	me?: string | mongo.ObjectID | IUser,
 | 
			
		||||
	options?: {
 | 
			
		||||
		detail: boolean
 | 
			
		||||
	}
 | 
			
		||||
) => new Promise<any>(async (resolve, reject) => {
 | 
			
		||||
) => {
 | 
			
		||||
	const opts = options || {
 | 
			
		||||
		detail: true,
 | 
			
		||||
	};
 | 
			
		||||
| 
						 | 
				
			
			@ -184,7 +184,7 @@ const self = (
 | 
			
		|||
	// resolve promises in _post object
 | 
			
		||||
	_post = await rap(_post);
 | 
			
		||||
 | 
			
		||||
	resolve(_post);
 | 
			
		||||
});
 | 
			
		||||
	return _post;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default self;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue