- added own provider for drive methods
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s

- renamed middleware Role and Can to role_middleware and can_middleware
- added some typing for inertia vue3 components
- npm updates
This commit is contained in:
Kaimbacher 2024-04-23 19:36:45 +02:00
parent cb51a4136f
commit 296c8fd46e
67 changed files with 2515 additions and 1913 deletions

View file

@ -1,13 +1,13 @@
import { BaseCommand } from '@adonisjs/core/ace'
import type { CommandOptions } from '@adonisjs/core/types/ace'
import { BaseCommand } from '@adonisjs/core/ace';
import type { CommandOptions } from '@adonisjs/core/types/ace';
export default class IndexTest extends BaseCommand {
static commandName = 'index:test'
static description = ''
static commandName = 'index:test';
static description = '';
static options: CommandOptions = {}
static options: CommandOptions = {};
async run() {
this.logger.info('Hello world from "IndexTest"')
}
}
async run() {
this.logger.info('Hello world from "IndexTest"');
}
}