mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import Alpine from '@alpinejs/csp';
|
|
|
|
Alpine.data('adminUserPasskeys', () => ({
|
|
showDangerZone: false,
|
|
wipeConfirm: '',
|
|
|
|
toggleDangerZone() {
|
|
this.showDangerZone = !this.showDangerZone;
|
|
},
|
|
|
|
canWipe() {
|
|
return this.wipeConfirm === 'WIPE';
|
|
},
|
|
}));
|