Skip to content

totaljs/helpdeskpackage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Installation

This is a simple HelpDesk mini application.

  • you and your customer can create unlimited count of issues (NoSQL embedded limit)
  • admin mode is enabled when you perform a double-click on the bug icon

  • download and copy helpdesk.package into the /packages/ directory or create a definition with:
var options = {};

// ====================================
// COMMON (OPTIONAL)
// ====================================

// options.url = '/$helpdesk/';

// ====================================
// Security (OPTIONAL)
// ====================================

// options.auth = ['admin:admin', 'name:password'];
// options.auth = true; // HelpDesk uses "authorize" flag
// options.restrictions = ['127.0.0.1', '138.201', '172.31.33'];

// ====================================
// Email notifications (OPTIONAL)
// ====================================

// options.customer = 'EMAIL ADDRESS';
// options.support = 'EMAIL ADDRESS';