summaryrefslogtreecommitdiffstats
path: root/sandstorm.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandstorm.js')
-rw-r--r--sandstorm.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/sandstorm.js b/sandstorm.js
index 3dcbf03c..3ea85fef 100644
--- a/sandstorm.js
+++ b/sandstorm.js
@@ -252,6 +252,10 @@ if (isSandstorm && Meteor.isServer) {
Users.after.insert((userId, doc) => {
if (!Boards.findOne(sandstormBoard._id)) {
Boards.insert(sandstormBoard, { validate: false });
+ Swimlanes.insert({
+ title: 'Default',
+ boardId: sandstormBoard._id,
+ });
Activities.update(
{ activityTypeId: sandstormBoard._id },
{ $set: { userId: doc._id }}