issues
search
inveniosoftware
/
invenio-oauth2server
Invenio modules that implements OAuth 2 server.
https://invenio-oauth2server.readthedocs.io
MIT License
4
stars
43
forks
source link
forms: fix for Client Type select
#227
Closed
topless
closed
3 years ago
topless
commented
3 years ago
fix the issue when we choose Client Type: Confidential or Public.
When a value is False,
wtforms
doesnt render value="False" for the html elements.
Fix the coerce for is_confidential, in html our values are strings, so when in python we do bool("False") we get True.
changed hardcoded client_type to field.name
closes #225