summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/acct_opensrs.pm
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2018-08-14 19:11:00 -0400
committerMitch Jackson <mitch@freeside.biz>2018-09-19 00:40:38 -0400
commit7be116339beee253f9bf8805076c766cf0f8e318 (patch)
tree53ef2e5563a58fe8308c5d3b42770fd3d29287f7 /FS/FS/part_export/acct_opensrs.pm
parent5a8c96bc2c4cd9dfe4540ee39fba0fd203689890 (diff)
RT# 78547 - consolidate noexport_hack
Diffstat (limited to 'FS/FS/part_export/acct_opensrs.pm')
-rw-r--r--FS/FS/part_export/acct_opensrs.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/FS/FS/part_export/acct_opensrs.pm b/FS/FS/part_export/acct_opensrs.pm
index 51cee97..c131900 100644
--- a/FS/FS/part_export/acct_opensrs.pm
+++ b/FS/FS/part_export/acct_opensrs.pm
@@ -87,7 +87,7 @@ sub app {
return;
}
-sub export_insert {
+sub _export_insert {
my $self = shift;
my $new = shift;
my $app = $self->app;
@@ -134,7 +134,7 @@ sub export_insert {
}
}
-sub export_delete {
+sub _export_delete {
my $self = shift;
my $old = shift;
my $app = $self->app;
@@ -160,7 +160,7 @@ sub export_delete {
}
}
-sub export_replace {
+sub _export_replace {
my $self = shift;
my ($new, $old) = @_;
my $app = $self->app;
@@ -222,7 +222,7 @@ sub export_replace {
}
}
-sub export_suspend {
+sub _export_suspend {
my $self = shift;
my $svc = shift;
my $unsuspend = shift || 0;
@@ -243,7 +243,7 @@ sub export_suspend {
return;
}
-sub export_unsuspend {
+sub _export_unsuspend {
my ($self, $svc) = @_;
$self->export_suspend($svc, 1);
}