summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/sqlradius_withdomain.pm
diff options
context:
space:
mode:
authorivan <ivan>2003-06-30 12:22:24 +0000
committerivan <ivan>2003-06-30 12:22:24 +0000
commit70997699eb64ce36ca408214cfe4dbc502d7ca58 (patch)
treedd38b59471816468f4525b49a26d3eaa01090bb7 /FS/FS/part_export/sqlradius_withdomain.pm
parent44c2f829e36a7751e0c97a4dd33dff8e3f192a30 (diff)
adding sqlradius_withdomain export including realms, closes: bug#514
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;
+}
+