XMPP clients connections WIP + fix mod_muc_http_defaults

This commit is contained in:
John Livingston
2023-04-11 17:07:43 +02:00
committed by John Livingston
parent d544a53b38
commit 38023df6be
3 changed files with 15 additions and 14 deletions

View File

@ -21,7 +21,8 @@ interface RoomDefaults {
members_only?: boolean
allow_member_invites?: boolean
public_jids?: boolean
subject: string
// subject_from: string
// subject: string
changesubject?: boolean
// historylength: number
moderated?: boolean
@ -80,8 +81,8 @@ async function initApiRouter (options: RegisterServerOptions): Promise<Router> {
const roomDefaults: RoomDefaults = {
config: {
name: channelInfos.displayName,
description: '',
subject: channelInfos.displayName
description: ''
// subject: channelInfos.displayName
},
affiliations: affiliations
}
@ -129,8 +130,8 @@ async function initApiRouter (options: RegisterServerOptions): Promise<Router> {
config: {
name: video.name,
description: '',
language: video.language,
subject: video.name
language: video.language
// subject: video.name
},
affiliations: affiliations
}