Merge branch 'master' of https://github.com/fosscord/fosscord-server
This commit is contained in:
		
						commit
						ccf4386d70
					
				
							
								
								
									
										20626
									
								
								api/assets/schemas.json
									
									
									
									
									
								
							
							
						
						
									
										20626
									
								
								api/assets/schemas.json
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -31,7 +31,6 @@ const Excluded = [ | ||||
| ]; | ||||
| 
 | ||||
| function modify(obj) { | ||||
| 	delete obj.additionalProperties; | ||||
| 	for (var k in obj) { | ||||
| 		if (typeof obj[k] === "object" && obj[k] !== null) { | ||||
| 			modify(obj[k]); | ||||
|  | ||||
| @ -183,6 +183,9 @@ router.post( | ||||
| 			} | ||||
| 		} | ||||
| 		const channel = await Channel.findOneOrFail({ where: { id: channel_id }, relations: ["recipients", "recipients.user"] }); | ||||
| 		if (!channel.isWritable()) { | ||||
| 			throw new HTTPError(`Cannot send messages to channel of type ${channel.type}`, 400) | ||||
| 		} | ||||
| 
 | ||||
| 		const embeds = body.embeds || []; | ||||
| 		if (body.embed) embeds.push(body.embed); | ||||
| @ -220,6 +223,8 @@ router.post( | ||||
| 				}) | ||||
| 			); | ||||
| 		} | ||||
| 
 | ||||
| 
 | ||||
| 	 | ||||
| 		//Fix for the client bug
 | ||||
| 		delete message.member | ||||
|  | ||||
| @ -46,8 +46,6 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	user.assign(body); | ||||
| 
 | ||||
| 	if (body.new_password) { | ||||
| 		if (!body.password && !user.email) { | ||||
| 			throw FieldErrors({ | ||||
| @ -66,6 +64,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
| 	user.assign(body); | ||||
| 	await user.save(); | ||||
| 
 | ||||
| 	// @ts-ignore
 | ||||
|  | ||||
| @ -352,6 +352,16 @@ export class Channel extends BaseClass { | ||||
| 	isDm() { | ||||
| 		return this.type === ChannelType.DM || this.type === ChannelType.GROUP_DM; | ||||
| 	} | ||||
| 
 | ||||
| 	// Does the channel support sending messages ( eg categories do not )
 | ||||
| 	isWritable() { | ||||
| 		const disallowedChannelTypes = [ | ||||
| 			ChannelType.GUILD_CATEGORY, | ||||
| 			ChannelType.GUILD_STAGE_VOICE, | ||||
| 			ChannelType.VOICELESS_WHITEBOARD, | ||||
| 		]; | ||||
| 		return disallowedChannelTypes.indexOf(this.type) == -1; | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| export interface ChannelPermissionOverwrite { | ||||
|  | ||||
| @ -27,13 +27,6 @@ export class UserGroup extends BaseClass { | ||||
| 
 | ||||
| 	@Column({ nullable: true }) | ||||
| 	icon: string; | ||||
| 
 | ||||
| 	@Column({ type: "simple-json", nullable: true }) | ||||
| 	tags?: { | ||||
| 		bot_id?: string; | ||||
| 		integration_id?: string; | ||||
| 		premium_subscriber?: boolean; | ||||
| 	}; | ||||
| 	 | ||||
| 	@Column({ nullable: true }) | ||||
| 	parent?: string; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Erkin Alp Güney
						Erkin Alp Güney