diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-09-07 08:49:34 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-09-08 13:15:07 -0400 |
commit | 321a2e69b5ab89ebf3e2d6b711b2a21126b28ff8 (patch) | |
tree | fd6944343bc802573b0a0cef4ff4e6bb750041ef /httemplate/misc/process | |
parent | d2d82863f354790d1eb3ee1d3b193d2e423ae8d0 (diff) |
RT# 77167 - Added the ability to import a list of contacts
Conflicts:
httemplate/elements/menu.html
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r-- | httemplate/misc/process/contact-import.cgi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/httemplate/misc/process/contact-import.cgi b/httemplate/misc/process/contact-import.cgi new file mode 100644 index 000000000..cbdcad455 --- /dev/null +++ b/httemplate/misc/process/contact-import.cgi @@ -0,0 +1,10 @@ +<% $server->process %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Import'); + +my $server = + new FS::UI::Web::JSRPC 'FS::contact_import::process_batch_import', $cgi; + +</%init> |