superdesk/superdesk-client-core

View on GitHub
scripts/apps/publish/constants.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const transmissionTypes = {
    ftp: {
        templateUrl: 'scripts/apps/publish/views/ftp-config.html',
    },
    email: {
        templateUrl: 'scripts/apps/publish/views/email-config.html',
    },
    ODBC: {
        templateUrl: 'scripts/apps/publish/views/odbc-config.html',
    },
    File: {
        templateUrl: 'scripts/apps/publish/views/file-config.html',
    },
    http_push: {
        templateUrl: 'scripts/apps/publish/views/http-push-config.html',
    },
    amazon_sqs_fifo: {
        templateUrl: 'scripts/apps/publish/views/amazon-sqs-fifo-config.html',
    },
};