Update some meta-data

New site url
New contact email
New year!
This commit is contained in:
Maxime Quandalle 2016-01-02 17:15:19 +01:00
parent 847780760a
commit 272f67f0c6
6 changed files with 12 additions and 12 deletions

View file

@ -126,10 +126,10 @@ if (isSandstorm && Meteor.isServer) {
updateUserPermissions(doc._id, doc.services.sandstorm.permissions);
});
// LibreBoard v0.8 didnt implement the Sandstorm sharing model and instead
// kept the visibility setting (“public” or “private”) in the UI as does the
// main Meteor application. We need to enforce “public” visibility as the
// sharing is now handled by Sandstorm.
// Wekan v0.8 didnt implement the Sandstorm sharing model and instead kept
// the visibility setting (“public” or “private”) in the UI as does the main
// Meteor application. We need to enforce “public” visibility as the sharing
// is now handled by Sandstorm.
// See https://github.com/wekan/wekan/issues/346
Migrations.add('enforce-public-visibility-for-sandstorm', () => {
Boards.update('sandstorm', { $set: { permission: 'public' }});