Remove no-longer-used AdminServletPathPrefix config value

We still have some paths under /_dr/admin (e.g. for server-side regtool
actions), but this actual config value isn't used anywhere ever since
we deleted the admin console in []
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=119693711
This commit is contained in:
nickfelt 2016-04-12 16:42:49 -07:00 committed by Justine Tunney
parent ad90cdf82d
commit 7c4b80f4d9
2 changed files with 0 additions and 10 deletions

View file

@ -183,11 +183,6 @@ public interface RegistryConfig {
*/
public ImmutableList<String> getRegistrarChangesNotificationEmailAddresses();
/**
* Returns the relativeURL path to the admin servlet, e.g. "/_dr/admin".
*/
public String getAdminServletPathPrefix();
/**
* Returns default WHOIS server to use when {@code Registrar#getWhoisServer()} is {@code null}.
*

View file

@ -134,11 +134,6 @@ public class TestRegistryConfig implements RegistryConfig {
return ImmutableList.of("notification@test.example", "notification2@test.example");
}
@Override
public String getAdminServletPathPrefix() {
return "/_dr/admin";
}
@Override
public String getRegistrarDefaultWhoisServer() {
return "whois.nic.fakewhois.example";