mirror of
https://github.com/google/nomulus
synced 2026-09-04 23:27:11 +00:00
Add a button in the admin panel to check OT&E status of a registrar
For now, it only displays a status of "Passed: true|false" or an error message in simple text. In further work we will make the UI nicer. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=229971564
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
* @externs
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* @suppress {duplicate}
|
||||
*/
|
||||
@@ -31,6 +30,24 @@ var registry = {};
|
||||
*/
|
||||
registry.json = {};
|
||||
|
||||
registry.json.ote = {};
|
||||
|
||||
/**
|
||||
* @typedef {{
|
||||
* clientId: string,
|
||||
* completed: boolean
|
||||
* }}
|
||||
*/
|
||||
registry.json.ote.OteStatusResult;
|
||||
|
||||
/**
|
||||
* @typedef {{
|
||||
* status: string,
|
||||
* message: string,
|
||||
* results: !Array.<registry.json.ote.OteStatusResult>
|
||||
* }}
|
||||
*/
|
||||
registry.json.ote.OteStatusResponse;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user