Mercurial > prosody-modules
view mod_muc_lang/README.markdown @ 5511:0860497152af
mod_http_oauth2: Record hash of client_id to allow future verification
RFC 6819 section 5.2.2.2 states that refresh tokens MUST be bound to the
client. In order to do that, we must record something that can
definitely tie the client to the grant. Since the full client_id is so
large (why we have this client_subset function), a hash is stored
instead.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 02 Jun 2023 10:14:16 +0200 |
parents | 4e8b5ea7f4c2 |
children |
line wrap: on
line source
# Introduction This module adds support for advertising the language used in a room. # Configuring ``` {.lua} Component "rooms.example.net" "muc" modules_enabled = { "muc_lang"; } ``` The room language is specified in a new field in the room configuration dialog, accessible through compatible clients. Use [language codes](https://en.wikipedia.org/wiki/ISO_639) like `en`, `fr`, `de` etc. # Compatibility Meant for use with Prosody 0.10.x Native support was [added in Prosody trunk/0.11](https://hg.prosody.im/trunk/rev/9c90cd2fc4c3), so there is no need for this module.