mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Rename 'registry_tool' to 'nomulus'
This changes everything with external visibility beyond the codebase (i.e. the name of the compiled binary and the documentation that refers to it). It does not change a lot of things internal to the codebase, i.e. the "RegistryTool" class didn't change its name. We can rename that in a subsequent CL if we want to. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135022087
This commit is contained in:
parent
0d122acec2
commit
3b02d77ceb
21 changed files with 62 additions and 57 deletions
|
@ -24,8 +24,13 @@ import google.registry.model.registry.label.PremiumList;
|
|||
import google.registry.request.Action;
|
||||
import javax.inject.Inject;
|
||||
|
||||
/** An action that lists premium lists, for use by the registry_tool list_premium_lists command. */
|
||||
@Action(path = ListPremiumListsAction.PATH, method = {GET, POST})
|
||||
/**
|
||||
* An action that lists premium lists, for use by the {@code nomulus list_premium_lists} command.
|
||||
*/
|
||||
@Action(
|
||||
path = ListPremiumListsAction.PATH,
|
||||
method = {GET, POST}
|
||||
)
|
||||
public final class ListPremiumListsAction extends ListObjectsAction<PremiumList> {
|
||||
|
||||
public static final String PATH = "/_dr/admin/list/premiumLists";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue