Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@dmapper/auth-lti
Advanced tools
startupjs: >= 0.44.0
@startupjs/auth: >= 0.33.0
@startupjs/ui: >= 0.44.0
Импорт стратегии:
import { Strategy as LTIStrategy } from '@startupjs/auth-idg/server'
Импорт либы для конфига:
import conf from 'nconf'
В startupjsServer, в стратегии функции initAuth нужно добавить LTIStrategy с указанием обьекта опций:
initAuth(ee, {
strategies: [
new LTIStrategy(<options>)
]
})
Доступные опции
callbackUrl: <string> - опционально, дефолтное значение: '/auth/lti/callback'
dbSchools: <boolean> - опционально, дефолтное значение: false
collectionName: <string> - опционально если dbSchools со значение false, дефолтное значение: 'authLTISchools'
schools: <object> - опционально если dbSchools со значением true
Пример значения опции schools
{
<school-name>: {
consumerKey: <key>,
consumerSecret: <secret>
},
ucdavis: {
consumerKey: '12312k321l'
consumerSecret: '312kjh3k12jh''
},
....
}
Вы можете проинициализировать стратегию с предопределенными школами
{
schools: <object>
}
или использовать школы из базы данных
{
dbSchools: true
}
Отсутствует
Этот компонент предоставляет возможность добавлять новые школы и удалять ранее добавленные
import { List } from '@dmapper/auth-lti'
...
<List />
Компонент принимает следующие опции
collection: <string> - опционально, дефолтное значение: 'authLTISchools'
Если вы нуждаетесь в другом названии коллекции для хранения школ, то вы должны указать это соответсвующей опцией в стратегии и в компоненте:
initAuth(ee, {
strategies: [
new LTIStrategy({
dbScools: true,
collectionName: 'anotherName' <---
})
]
})
import { List } from '@dmapper/auth-lti'
...
<List
collection="anotherName" <---
/>
FAQs
LTI auth plugin for StartupJS auth module
The npm package @dmapper/auth-lti receives a total of 0 weekly downloads. As such, @dmapper/auth-lti popularity was classified as not popular.
We found that @dmapper/auth-lti demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 25 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.