@jbrowse/plugin-authentication
Version:
JBrowse 2 Authentication
17 lines (16 loc) • 642 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const configuration_1 = require("@jbrowse/core/configuration");
const models_1 = require("@jbrowse/core/pluggableElementTypes/models");
function x() { }
const ExternalTokenConfigSchema = (0, configuration_1.ConfigurationSchema)('ExternalTokenInternetAccount', {
validateWithHEAD: {
description: 'validate the token with a HEAD request before using it',
type: 'boolean',
defaultValue: true,
},
}, {
baseConfiguration: models_1.BaseInternetAccountConfig,
explicitlyTyped: true,
});
exports.default = ExternalTokenConfigSchema;
;