mirror of
https://github.com/google/nomulus
synced 2026-07-20 15:02:30 +00:00
Add publish functionality to billing pipeline
This closes the end-to-end billing pipeline, allowing us to share generated detail reports with registrars via Drive and e-mail the invoicing team a link to the generated invoice. This also factors out the email configs from ICANN reporting into the common 'misc' config, since we'll likely need alert e-mails for future periodic tasks. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=180805972
This commit is contained in:
@@ -37,12 +37,19 @@ import java.io.InputStream;
|
||||
import java.util.Map;
|
||||
import javax.inject.Inject;
|
||||
|
||||
/** Publish a single registrar detail report from GCS to Drive. */
|
||||
/**
|
||||
* Publish a single registrar detail report from GCS to Drive.
|
||||
*
|
||||
* <p>This is now DEPRECATED, and will be removed upon completion of the billing migration. If you
|
||||
* wish to use the functionality, use {@link google.registry.billing.CopyDetailReportsAction}
|
||||
* instead.
|
||||
*/
|
||||
@Action(
|
||||
path = PublishDetailReportAction.PATH,
|
||||
method = Action.Method.POST,
|
||||
auth = Auth.AUTH_INTERNAL_OR_ADMIN
|
||||
)
|
||||
@Deprecated
|
||||
public final class PublishDetailReportAction implements Runnable, JsonAction {
|
||||
|
||||
private static final FormattingLogger logger = FormattingLogger.getLoggerForCallerClass();
|
||||
|
||||
Reference in New Issue
Block a user