mirror of
https://github.com/google/nomulus
synced 2026-06-09 16:33:02 +00:00
Rename whitelist -> allow list (#635)
* Rename whitelist -> allow list * Merge branch 'master' into allowlist-denylist
This commit is contained in:
@@ -89,7 +89,7 @@
|
||||
</td>
|
||||
</table>
|
||||
Gave <label>{$contactEmail}</label> web-console access to these registrars.
|
||||
<h1>Don't forget to set the <label>Certificate</label> and <label>IP-whitelist</label> for these Registrars!</h1>
|
||||
<h1>Don't forget to set the <label>Certificate</label> and <label>IP allow list</label> for these Registrars!</h1>
|
||||
Links to the security page for your convenience:<br>
|
||||
{for $clientId in mapKeys($clientIdToTld)}
|
||||
<a href="/registrar?clientId={$clientId}#security-settings" target="_blank">{$clientId}</a><br>
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
<a href="/registrar?clientId={$clientId}#whois-settings" target="_blank">WHOIS page</a>
|
||||
<li>allowed TLDs on the {sp}
|
||||
<a href="/registrar?clientId={$clientId}#admin-settings" target="_blank">admin page</a>
|
||||
<li>certificate, IP whitelist on the {sp}
|
||||
<li>certificate, IP allow list on the {sp}
|
||||
<a href="/registrar?clientId={$clientId}#security-settings" target="_blank">security page</a>
|
||||
</ol>
|
||||
</span>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
/** Registrar security settings page for view and edit. */
|
||||
{template .settings}
|
||||
{@param ipAddressWhitelist: list<string>}
|
||||
{@param ipAddressAllowList: list<string>}
|
||||
{@param? phonePasscode: string}
|
||||
{@param? clientCertificate: string}
|
||||
{@param? clientCertificateHash: string}
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
<tr class="{css('kd-settings-pane-section')}">
|
||||
<td>
|
||||
<label class="{css('setting-label')}">IP whitelist</label>
|
||||
<label class="{css('setting-label')}">IP allow list</label>
|
||||
<span class="{css('description')}">Restrict access to EPP
|
||||
production servers to the following IP/IPv6 addresses, or
|
||||
ranges like 1.1.1.0/24</span>
|
||||
@@ -44,9 +44,9 @@
|
||||
<td class="{css('setting')}">
|
||||
<div class="{css('info')} {css('summary')}">
|
||||
<div id="ips">
|
||||
{for $ip in $ipAddressWhitelist}
|
||||
{for $ip in $ipAddressAllowList}
|
||||
{call .ip}
|
||||
{param name: 'ipAddressWhitelist[' + index($ip) + ']' /}
|
||||
{param name: 'ipAddressAllowList[' + index($ip) + ']' /}
|
||||
{param ip: $ip /}
|
||||
{/call}
|
||||
{/for}
|
||||
|
||||
Reference in New Issue
Block a user