refactor: fix types
This commit is contained in:
		@@ -10,7 +10,7 @@ export function generateRepliesQuery(q: SelectQueryBuilder<any>, me?: Pick<User,
 | 
			
		||||
				.andWhere('note.replyUserId = note.userId');
 | 
			
		||||
			}));
 | 
			
		||||
		}));
 | 
			
		||||
	} else if(!me.showTimelineReplies) {
 | 
			
		||||
	} else if (!me.showTimelineReplies) {
 | 
			
		||||
		q.andWhere(new Brackets(qb => { qb
 | 
			
		||||
			.where(`note.replyId IS NULL`) // 返信ではない
 | 
			
		||||
			.orWhere('note.replyUserId = :meId', { meId: me.id }) // 返信だけど自分のノートへの返信
 | 
			
		||||
 
 | 
			
		||||
@@ -18,6 +18,7 @@ type SimpleUserInfo = {
 | 
			
		||||
	isAdmin: ILocalUser['isAdmin'];
 | 
			
		||||
	isModerator: ILocalUser['isModerator'];
 | 
			
		||||
	isSilenced: ILocalUser['isSilenced'];
 | 
			
		||||
	showTimelineReplies: ILocalUser['showTimelineReplies'];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
type Params<T extends IEndpointMeta> = {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user