Remove pwix:blaze-layout

This commit is contained in:
Harry Adel 2026-01-14 00:13:21 +02:00
parent 9ebf4d2426
commit 0635a663f0
38 changed files with 771 additions and 432 deletions

View file

@ -2018,6 +2018,7 @@ Meteor.methods({
},
// Spaces: create a new space under parentId (or root when null)
createWorkspace({ parentId = null, name }) {
check(parentId, Match.OneOf(String, null));
check(name, String);
if (!this.userId) throw new Meteor.Error('not-logged-in');
const user = Users.findOne(this.userId) || {};