Customize the default name shown in authentication app (2-factor authentication)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Vincent
    Senior Member
    • May 2017
    • 176

    Customize the default name shown in authentication app (2-factor authentication)

    Hi, we are now 2-factor authentication. When an account is added to the mobile authentication app, 'EspoCRM' will be shown, user has to update this tag if there are accounts of multiple EspoCRM servers. Is there any way to customize this tag for different EspoCRM server? Thanks.
  • Vincent
    Senior Member
    • May 2017
    • 176

    #2
    To change the issuer (application name), 2 files have to be created

    1.copy client\src\views\user-security\modals\totp.js to client\custom\src\views\user-security\modals\totp.js
    update afterRender: function (), set the issuer in otpauth uri

    2. copy application\Espo\Resources\metadata\app\auth2FAMet hods.json to custom\Espo\Custom\Resources\metadata\app\auth2FAM ethods.json
    update
    "userApplyView": "views/user-security/modals/totp"
    to
    "userApplyView": "custom:views/user-security/modals/totp"

    Comment

    • yuri
      Member
      • Mar 2014
      • 8484

      #3
      In 5.8.3 it's changed. Label is returned by backend.https://github.com/espocrm/espocrm/b...urity.php#L225
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      Working...