mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 20:55:11 +00:00
* temp commit * lemme do it * nope * let them do it too * collab invite model * better visuals on progman * waow * danger will robinson * show apps on backend & link user * first pass on app auditability! * no lastnaming admins * async frame that shit! * waugh * can't add yourself * fix reinvite * sidebar badging * lint... * gotta be on the app! * let that get rescued by applcon * already in revoke_all_authorizations * woag * the routes you grew up with no longer exist * what would the UI for that even be? * sorch * much better! * frickin validations
13 lines
No EOL
472 B
JavaScript
13 lines
No EOL
472 B
JavaScript
import Alpine from 'alpinejs'
|
|
import { webauthnRegister } from './webauthn-registration.js'
|
|
import { webauthnAuth } from './webauthn-authentication.js'
|
|
import { stepUpWebauthn } from './webauthn-step-up.js'
|
|
import { scopeEditor } from './scope-editor.js'
|
|
|
|
Alpine.data('webauthnRegister', webauthnRegister)
|
|
Alpine.data('webauthnAuth', webauthnAuth)
|
|
Alpine.data('stepUpWebauthn', stepUpWebauthn)
|
|
Alpine.data('scopeEditor', scopeEditor)
|
|
|
|
window.Alpine = Alpine
|
|
Alpine.start() |