mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	Improve featured api
This commit is contained in:
		
							parent
							
								
									95b157ac3e
								
							
						
					
					
						commit
						414cac49c3
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -23,7 +23,7 @@ export const meta = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
 | 
			
		||||
	const day = 1000 * 60 * 60 * 24;
 | 
			
		||||
	const day = 1000 * 60 * 60 * 24 * 2;
 | 
			
		||||
 | 
			
		||||
	const notes = await Note
 | 
			
		||||
		.find({
 | 
			
		||||
| 
						 | 
				
			
			@ -31,7 +31,8 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => {
 | 
			
		|||
				$gt: new Date(Date.now() - day)
 | 
			
		||||
			},
 | 
			
		||||
			deletedAt: null,
 | 
			
		||||
			visibility: { $in: ['public', 'home'] }
 | 
			
		||||
			visibility: { $in: ['public', 'home'] },
 | 
			
		||||
			'_user.host': null
 | 
			
		||||
		}, {
 | 
			
		||||
			limit: ps.limit,
 | 
			
		||||
			sort: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue