Lint fixes.

This commit is contained in:
elweyn 2021-12-04 13:55:23 +01:00 committed by ogerly
parent 236f30d16f
commit 03111c7b4e
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -62,4 +62,6 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis
`)
}
export async function downgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {}
export async function downgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {
// TODO NO EMPTY FUNCTION
}