🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

ovh-angular-otrs

Package Overview
Dependencies
Maintainers
13
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ovh-angular-otrs

Manage OTRS tickets

latest
Source
npmnpm
Version
7.0.0-alpha.1
Version published
Maintainers
13
Created
Source

Manage OTRS tickets

githubbanner

Maintenance Chat on gitter Build Status

NPM

Installation

Bower

bower install ovh-angular-otrs --save

NPM

npm install ovh-angular-otrs --save

Howto's

Inject module

angular.module("myApp", ["ovh-angular-otrs"]);

Inject it to manager-navbar at app.config:

angular.module("myApp")
    .config((OtrsPopupProvider) => {
        OtrsPopupProvider.setBaseUrlTickets("…");
    });
…
const assistanceMenu = [];

assistanceMenu.push({
    title: $translate.instant("otrs_menu_new_ticket"),
    click: (callback) => {
        if (!OtrsPopupService.isLoaded()) {
            OtrsPopupService.init();
        } else {
            OtrsPopupService.toggle();
        }

        if (_.isFunction(callback)) {
            callback();
        }
    }
});
…

Get the sources

git clone https://github.com/ovh-ux/ovh-angular-otrs.git
cd ovh-angular-otrs
npm install
bower install

You've developed a new cool feature? Fixed an annoying bug? We'd be happy to hear from you!

Have a look in CONTRIBUTING.md

Run the tests

npm test

License

See https://github.com/ovh/ovh-angular-otrs/blob/master/LICENSE.md

FAQs

Package last updated on 17 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts