mirror of
https://github.com/wekan/wekan.git
synced 2026-01-17 06:55:29 +01:00
Remove pwix:blaze-layout
This commit is contained in:
parent
9ebf4d2426
commit
0635a663f0
38 changed files with 771 additions and 432 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import LockoutSettings from '/models/lockoutSettings';
|
||||
import { Settings } from '../../models/settings';
|
||||
|
||||
Meteor.publish('lockoutSettings', function() {
|
||||
const ret = LockoutSettings.find();
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { ReactiveCache } from '/imports/reactiveCache';
|
||||
import { Settings } from '../../models/settings';
|
||||
|
||||
Meteor.publish('globalwebhooks', () => {
|
||||
const boardId = Integrations.Const.GLOBAL_WEBHOOK_ID;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
import { Settings } from '../../models/settings';
|
||||
|
||||
Meteor.publish('tableVisibilityModeSettings', function() {
|
||||
const ret = TableVisibilityModeSettings.find();
|
||||
return ret;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import { Accounts } from 'meteor/accounts-base';
|
|||
import { WebApp } from 'meteor/webapp';
|
||||
import { ReactiveCache } from '/imports/reactiveCache';
|
||||
import { Attachments, fileStoreStrategyFactory } from '/models/attachments';
|
||||
import { Settings } from '../../models/settings';
|
||||
import { moveToStorage } from '/models/lib/fileStoreStrategy';
|
||||
import { STORAGE_NAME_FILESYSTEM, STORAGE_NAME_GRIDFS, STORAGE_NAME_S3 } from '/models/lib/fileStoreStrategy';
|
||||
import AttachmentStorageSettings from '/models/attachmentStorageSettings';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue