mirror of
https://github.com/wallabag/wallabag.git
synced 2025-05-11 02:54:51 +00:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
export default class extends Controller {
|
|
static targets = ['emailTwoFactor', 'googleTwoFactor'];
|
|
|
|
uncheckGoogle() {
|
|
this.googleTwoFactorTarget.checked = false;
|
|
}
|
|
|
|
uncheckEmail() {
|
|
this.emailTwoFactorTarget.checked = false;
|
|
}
|
|
}
|