Applied style rules to genocide all \t characters

This commit is contained in:
Stefan Zermatten
2022-10-09 16:01:36 +02:00
parent de598c70a7
commit 2fa913b09a
208 changed files with 6027 additions and 5801 deletions

View File

@@ -6,7 +6,7 @@ import { Migrations } from 'meteor/percolate:migrations';
const migrateTo = new ValidatedMethod({
name: 'admin.migrateTo',
validate: new SimpleSchema({
validate: new SimpleSchema({
version: {
type: SimpleSchema.oneOf(
SimpleSchema.Integer,
@@ -19,7 +19,7 @@ const migrateTo = new ValidatedMethod({
numRequests: 1,
timeInterval: 10000,
},
run({version}) {
run({ version }) {
if (Meteor.isClient) return;
assertAdmin(this.userId);
Migrations.migrateTo(version);