Actions
Feature #8878
closedPropagate user's description field into QR code for FreeRADIUS
Start date:
09/06/2018
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Description
Hi,
it is often desirable (esp. when you have more than one identity added in your Google Auth mobile app) to distinguish between different identities. Having all of them to be descripted as "*FreeRADIUS*" is not the most convenient way.
I have made the following modification to freeradius.xml:
- var provider = encodeURIComponent("FreeRADIUS");
+ var provider = encodeURIComponent($('#description').val());
+ if (provider.length == 0) {
+ provider = encodeURIComponent("FreeRADIUS");
+ }
What do you think about it?
Actions