summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/sqlradius_withdomain.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_export/sqlradius_withdomain.pm')
-rw-r--r--FS/FS/part_export/sqlradius_withdomain.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/FS/FS/part_export/sqlradius_withdomain.pm b/FS/FS/part_export/sqlradius_withdomain.pm
new file mode 100644
index 0000000..1c8f38c
--- /dev/null
+++ b/FS/FS/part_export/sqlradius_withdomain.pm
@@ -0,0 +1,12 @@
+package FS::part_export::sqlradius_withdomain;
+
+use vars qw(@ISA);
+use FS::part_export::sqlradius;
+
+@ISA = qw(FS::part_export::sqlradius);
+
+sub export_username {
+ my($self, $svc_acct) = (shift, shift);
+ $svc_acct->email;
+}
+