Mercurial > prosody-modules
view mod_adhoc_dataforms_demo/README.markdown @ 5418:f2c7bb3af600
mod_http_oauth2: Add role selector to consent page
List includes all roles available to the user, if more than one.
Defaults to either the first role in the scope string or the users
primary role.
Earlier draft listed all roles, but having options that can't be
selected is bad UX and the entire list of all roles on the server could
be long, and perhaps even sensitive.
Allows e.g. picking a role with fewer permissions than what might
otherwise have been selected.
UX wise, doing this with more checkboxes or possibly radio buttons would
have been confusion and/or looked messier.
Fixes the previous situation where unselecting a role would default to
the primary role, which could be more permissions than requested.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 05 May 2023 01:23:13 +0200 |
parents | d56cb74a0db8 |
children |
line wrap: on
line source
--- summary: 'Module for testing ad-hoc commands and dataforms rendering' --- # Introduction This module provides [Ad-Hoc commands][xep0050] for testing [data form][xep0004] that includes all kinds of fields. It's meant to help debug both Prosodys [`util.dataforms`][doc:developers:util:dataforms] library and clients, eg seeing how various field types are rendered. # Configuration Simply add it to [`modules_enabled`][doc:modules_enabled] like any other module. ``` {.lua} modules_enabled = { -- All your other modules etc "adhoc_dataforms_demo"; } ``` # Usage In your Ad-Hoc capable client, first look for "Execute command". You should see a form with various kinds of fields. Dataforms Demo : A simple command that provides a dataform with every possible field type, suitable for testing rending of dataforms. Multi-step command demo : A command that has multiple steps, suitable for testing back and forwards navigation.