diff options
author | Mark Wells <mark@freeside.biz> | 2015-09-30 22:49:38 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-09-30 22:50:12 -0700 |
commit | 0e1465cd691cb631528e7a7f83c641a18b6cef2f (patch) | |
tree | de48df2334cce2058b554276405c40a4cd4517d1 /httemplate/misc | |
parent | 8ed07b4b7ed0927893ade664139e58d28eb91c74 (diff) |
graphical selection of deployment zones and automatic block lookup, #30260
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/process/deploy_zone-block_lookup.cgi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/httemplate/misc/process/deploy_zone-block_lookup.cgi b/httemplate/misc/process/deploy_zone-block_lookup.cgi new file mode 100644 index 000000000..8f4eac7e9 --- /dev/null +++ b/httemplate/misc/process/deploy_zone-block_lookup.cgi @@ -0,0 +1,13 @@ +<% $server->process %> +<%init> +my $curuser = $FS::CurrentUser::CurrentUser; +die "access denied" + unless $curuser->access_right([ + 'Edit FCC report configuration', + 'Edit FCC report configuration for all agents', + ]); + +my $server = FS::UI::Web::JSRPC->new( + 'FS::deploy_zone::process_block_lookup', $cgi +); +</%init> |