Comparison

plugins/mod_muc_mam.lua @ 13268:081f8f9b3b81

Merge 0.12->trunk
author Kim Alvefur <zash@zash.se>
date Sun, 15 Oct 2023 14:57:24 +0200
parent 13227:58083329903d
parent 13267:7ae000fc8c07
comparison
equal deleted inserted replaced
13266:9c62ffbdf2ae 13268:081f8f9b3b81
88 local room, form = event.room, event.form; 88 local room, form = event.room, event.form;
89 table.insert(form, 89 table.insert(form,
90 { 90 {
91 name = muc_form_enable, 91 name = muc_form_enable,
92 type = "boolean", 92 type = "boolean",
93 label = "Enable archiving?", 93 label = "Archive chat on server",
94 value = archiving_enabled(room), 94 value = archiving_enabled(room),
95 } 95 }
96 ); 96 );
97 end); 97 end);
98 98