summaryrefslogtreecommitdiff
path: root/source4/scripting/libjs/auth.js
diff options
context:
space:
mode:
Diffstat (limited to 'source4/scripting/libjs/auth.js')
-rw-r--r--source4/scripting/libjs/auth.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/source4/scripting/libjs/auth.js b/source4/scripting/libjs/auth.js
deleted file mode 100644
index 3fe81d0ea7..0000000000
--- a/source4/scripting/libjs/auth.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- auth js library functions
- Copyright Andrew Tridgell 2005
- released under the GNU GPL version 3 or later
-*/
-
-
-/*
- get a list of domains for SWAT authentication
-*/
-function getDomainList()
-{
- var ret = new Array(2);
- var lp = loadparm_init();
- ret[0] = "System User";
- ret[1] = lp.get("workgroup");
- return ret;
-}