mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 19:30:12 +01:00
11 lines
297 B
JavaScript
11 lines
297 B
JavaScript
import { ReactiveCache } from '/imports/reactiveCache';
|
|
import { TAPi18n } from '/imports/i18n';
|
|
|
|
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.error = new ReactiveVar('');
|
|
this.loading = new ReactiveVar(false);
|
|
|
|
Meteor.subscribe('setting');
|
|
},
|
|
}).register('accessibility');
|