summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/svc_dsl.html
blob: 889366e074ba25e4dda8a484471528e4072fee44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<% include( 'elements/svc_Common.html',
               'table'    => 'svc_dsl',
               'precheck_callback' => $precheck_callback,
           )
%>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?

my $precheck_callback = sub {
  my $cgi = shift;
  my $svcnum = $cgi->param('svcnum');
  my $error = '';
  if ( $svcnum ) {
    my $old = FS::svc_dsl->by_key($svcnum);
    my $newpass = $cgi->param('password');
    if ( $old and $newpass ne $old->password ) {
      $error ||= $old->is_password_allowed($newpass);
    }
  }
  $error;
};

</%init>