summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--i18n/en.i18n.json1
-rw-r--r--models/users.js5
2 files changed, 6 insertions, 0 deletions
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index ec9c1c96..92391c91 100644
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -373,6 +373,7 @@
"watching": "Watching",
"watching-info": "You will be notified of any change in this board",
"welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
"welcome-list1": "Basics",
"welcome-list2": "Advanced",
"what-to-do": "What do you want to do?",
diff --git a/models/users.js b/models/users.js
index 92cee9f6..d3b91ddb 100644
--- a/models/users.js
+++ b/models/users.js
@@ -549,6 +549,11 @@ if (Meteor.isServer) {
permission: 'private',
}, fakeUser, (err, boardId) => {
+ Swimlanes.insert({
+ title: TAPi18n.__('welcome-swimlane'),
+ boardId
+ }, fakeUser);
+
['welcome-list1', 'welcome-list2'].forEach((title) => {
Lists.insert({title: TAPi18n.__(title), boardId}, fakeUser);
});