diff --git a/admin/src/components/CreationFormular.vue b/admin/src/components/CreationFormular.vue index 5b131dca8..6e47812be 100644 --- a/admin/src/components/CreationFormular.vue +++ b/admin/src/components/CreationFormular.vue @@ -204,6 +204,7 @@ export default { // Die anzahl der Mitglieder aus der Mehrfachschöpfung const i = Object.keys(this.itemsMassCreation).length // hinweis das eine Mehrfachschöpfung ausgeführt wird an (Anzahl der MItgleider an die geschöpft wird) + // eslint-disable-next-line no-console console.log('SUBMIT CREATION => ' + this.type + ' >> für VIELE ' + i + ' Mitglieder') this.submitObj = [ { @@ -215,6 +216,7 @@ export default { moderator: this.$store.state.moderator.id, }, ] + // eslint-disable-next-line no-console console.log('MehrfachSCHÖPFUNG ABSENDEN FÜR >> ' + i + ' Mitglieder') // $store - offene Schöpfungen hochzählen diff --git a/database/migrations/0004-login_server_data.ts b/database/migrations/0004-login_server_data.ts index b69283ad7..554125eed 100644 --- a/database/migrations/0004-login_server_data.ts +++ b/database/migrations/0004-login_server_data.ts @@ -62,4 +62,6 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis `) } -export async function downgrade(queryFn: (query: string, values?: any[]) => Promise>) {} +export async function downgrade(queryFn: (query: string, values?: any[]) => Promise>) { + // TODO NO EMPTY FUNCTION +}