Merge pull request #26366 from nextcloud/backport/26355/stable21
[stable21] Fix working for phone number integration
This commit is contained in:
commit
3ebe3a0e5f
|
@ -30,14 +30,14 @@
|
||||||
{
|
{
|
||||||
name: 'v2-private',
|
name: 'v2-private',
|
||||||
displayName: t('settings', 'Private'),
|
displayName: t('settings', 'Private'),
|
||||||
tooltip: t('settings', "Don't show via public link"),
|
tooltip: t('settings', 'Only visible to people matched via phone number integration through Talk on mobile'),
|
||||||
iconClass: 'icon-password',
|
iconClass: 'icon-phone',
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'v2-local',
|
name: 'v2-local',
|
||||||
displayName: t('settings', 'Local'),
|
displayName: t('settings', 'Local'),
|
||||||
tooltip: t('settings', "Don't synchronize to servers"),
|
tooltip: t('settings', 'Only visible to people on this instance and guests'),
|
||||||
iconClass: 'icon-password',
|
iconClass: 'icon-password',
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
|
|
|
@ -183,12 +183,12 @@
|
||||||
<?php if ($_['restrictUserEnumerationToPhone'] === 'yes') {
|
<?php if ($_['restrictUserEnumerationToPhone'] === 'yes') {
|
||||||
print_unescaped('checked="checked"');
|
print_unescaped('checked="checked"');
|
||||||
} ?> />
|
} ?> />
|
||||||
<label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phonebook matches'));?></label><br />
|
<label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phone number integration'));?></label><br />
|
||||||
</p>
|
</p>
|
||||||
<p id="shareapi_restrict_user_enumeration_combinewarning_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no' || $_['allowShareDialogUserEnumeration'] === 'no') {
|
<p id="shareapi_restrict_user_enumeration_combinewarning_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no' || $_['allowShareDialogUserEnumeration'] === 'no') {
|
||||||
p('hidden');
|
p('hidden');
|
||||||
}?>">
|
}?>">
|
||||||
<em><?php p($l->t('If autocompletion "same group" and "phonebook matches" are enabled a match in either is enough to show the user.'));?></em><br />
|
<em><?php p($l->t('If autocompletion "same group" and "phone number integration" are enabled a match in either is enough to show the user.'));?></em><br />
|
||||||
</p>
|
</p>
|
||||||
<p id="shareapi_restrict_user_enumeration_full_match_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no') {
|
<p id="shareapi_restrict_user_enumeration_full_match_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no') {
|
||||||
p('hidden');
|
p('hidden');
|
||||||
|
|
Loading…
Reference in New Issue