UNPKG

@annoto/ims-lti

Version:

Module for building an LTI Tool Provider and accept LTI launch requests

25 lines (19 loc) 640 B
const extensions = require('./extensions'); // Export the main object module.exports = { // Version of the library this is version: require('../package.json').version, // Provider and Consumer classes Provider: require('./provider'), Consumer: require('./consumer'), OutcomeService: extensions.Outcomes.OutcomeService, Errors: require('./errors'), Stores: { RedisStore: require('./redis-nonce-store'), MemoryStore: require('./memory-nonce-store'), NonceStore: require('./nonce-store'), }, Extensions: extensions, // Which version of the LTI standard are accepted supported_versions: ['LTI-1p0'], };