1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Merge pull request #4301 from wallabag/fix/4215/add-label-and-issuer-to-o2p-config

This commit is contained in:
Jérémy Benoist 2021-01-04 06:48:10 +01:00 committed by GitHub
commit ff6158811b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 2 deletions

View file

@ -209,6 +209,7 @@ scheb_two_factor:
google: google:
enabled: "%twofactor_auth%" enabled: "%twofactor_auth%"
issuer: "%server_name%"
template: WallabagUserBundle:Authentication:form.html.twig template: WallabagUserBundle:Authentication:form.html.twig
email: email:

View file

@ -24,6 +24,7 @@ parameters:
database_charset: utf8mb4 database_charset: utf8mb4
domain_name: https://your-wallabag-url-instance.com domain_name: https://your-wallabag-url-instance.com
server_name: "Your wallabag instance"
mailer_transport: smtp mailer_transport: smtp
mailer_user: ~ mailer_user: ~

View file

@ -13,7 +13,7 @@
<p> <p>
<img id="2faQrcode" class="hide-on-med-and-down" /> <img id="2faQrcode" class="hide-on-med-and-down" />
<script> <script>
document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ qr_code }}'); document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ qr_code|raw }}');
</script> </script>
</p> </p>
</li> </li>

View file

@ -17,7 +17,7 @@
<p> <p>
<img id="2faQrcode" class="hide-on-med-and-down" /> <img id="2faQrcode" class="hide-on-med-and-down" />
<script> <script>
document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ qr_code }}'); document.getElementById('2faQrcode').src = jrQrcode.getQrBase64('{{ qr_code|raw }}');
</script> </script>
</p> </p>