open20/amos-ticket

There is no license information available for the latest version (1.7.0) of this package.

Amos Ticket

1.7.0 2023-10-24 16:32 UTC

README

Ticket management.

Installation

You need to require this package and enable the module in your configuration.

add to composer requirements in composer.json

"open20/amos-ticket": "dev-master",

or run command bash:

composer require "open20/amos-ticket:dev-master"

Enable the News modules in modules-amos.php, add :

 'ticket' => [
	'class' => 'open20\amos\ticket\AmosTicket',
 ],

add news migrations to console modules (console/config/migrations-amos.php):

'@vendor/open20/amos-ticket/src/migrations'

Add ticket to Comments:

  'comments' => [
    'class' => 'open20\amos\comments\AmosComments',
    'modelsEnabled' => [
        .
        .
        'open20\amos\ticket\models\Ticket', //line to add
        .
        .
 	],
    'enableMailsNotification' => false,
    'enableUserSendMailCheckbox' => false
  ],