[Koha-bugs] [Bug 34148] New: mainpage.pl shows background jobs to users without manage_background_jobs permission

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Jun 28 18:45:09 CEST 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34148

            Bug ID: 34148
           Summary: mainpage.pl shows background jobs to users without
                    manage_background_jobs permission
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Staff interface
          Assignee: koha-bugs at lists.koha-community.org
          Reporter: lucas at bywatersolutions.com
        QA Contact: testopia at bugs.koha-community.org
                CC: gmcharlt at gmail.com

On mainpage.pl we show the count of background jobs only to users who do not
have the manage_background_jobs permission:

unless ( $logged_in_user->has_permission( { parameters =>
'manage_background_jobs' } ) ) { 
    my $already_ran_jobs = Koha::BackgroundJobs->search(
        { borrowernumber => $logged_in_user->borrowernumber } )->count ? 1 : 0;
    $template->param( already_ran_jobs => $already_ran_jobs );
}


This seems backwards to me. Is there a reason to show the count only to users
without the permission?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list