@nu-art/bug-report
Version:
35 lines (34 loc) • 1.5 kB
JavaScript
;
/*
* Allow the user to file a bug report directly from your app
*
* Copyright (C) 2020 Adam van der Kruk aka TacB0sS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModulePack_Backend_BugReport = void 0;
const ModuleBE_BugReport_1 = require("../modules/ModuleBE_BugReport");
const ModuleBE_AdminBR_1 = require("../modules/ModuleBE_AdminBR");
const JiraBugReportIntegrator_1 = require("../modules/JiraBugReportIntegrator");
// import {JiraModule} from '@nu-art/jira/backend';
const SlackBugReportIntegrator_1 = require("../modules/SlackBugReportIntegrator");
const backend_1 = require("@nu-art/slack/backend");
exports.ModulePack_Backend_BugReport = [
ModuleBE_BugReport_1.ModuleBE_BugReport,
ModuleBE_AdminBR_1.ModuleBE_AdminBR,
JiraBugReportIntegrator_1.JiraBugReportIntegrator,
// JiraModule,
SlackBugReportIntegrator_1.SlackBugReportIntegrator,
backend_1.ModuleBE_Slack
];