diff --git a/support_dashboard.module b/support_dashboard.module index f07113a43598d6b4f0f853cbd5e7187c220f4080..629987589eb9dd743ce34e5f2b74bf14655ebb5d 100644 --- a/support_dashboard.module +++ b/support_dashboard.module @@ -24,6 +24,13 @@ function support_dashboard_menu() { 'type' => $sid == -2 ? MENU_DEFAULT_LOCAL_TASK : MENU_LOCAL_TASK, ); } + $items['support_dashboard/myqueue'] = array( + 'title' => 'My Queue', + 'page callback' => 'drupal_get_form', + 'page arguments' => array('support_dashboard_form', -1), + 'access arguments' => array('access support dashboard'), + 'type' => MENU_CALLBACK, + ); return $items; }