Method: Marty::MainAuthApp#background_jobs_menu

Defined in:
app/components/marty/main_auth_app.rb

#background_jobs_menuObject



110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'app/components/marty/main_auth_app.rb', line 110

def background_jobs_menu
  [
    {
      text: 'Background Jobs',
      icon: icon_hack(:clock),
      disabled: !self.class.has_admin_perm?,
      menu: [
        :bg_status,
        :bg_stop,
        :bg_restart,
      ]
    },
  ]
end