chore: update templates

This commit is contained in:
2025-09-25 10:15:46 +03:00
parent 483a5488c1
commit 7e5c2d118b
14 changed files with 458 additions and 13 deletions

View File

@@ -2,10 +2,8 @@
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: Chen Asraf <casraf@pm.me>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\AutoCurrency\Command;
@@ -26,7 +24,7 @@ class {{pascalCase name}} extends Command {
*/
protected function configure(): void {
parent::configure();
$this->setName('autocurrency:{{kebabCase name}}');
$this->setName('jukebox:{{kebabCase name}}');
}
/**

View File

@@ -1,9 +1,11 @@
<template>
<div>{{ startCase name }}</div>
</template>
<script>
// import NcComponentExample from '@nextcloud/vue/components/NcComponentExample'
// import NcComponentExample from '@nextcloud/vue/dist/Components/NcComponentExample.js'
//
// import IconExample from 'vue-material-design-icons/Example.vue'
@@ -17,3 +19,4 @@ export default {
</script>
<style scoped lang="scss"></style>

View File

@@ -2,10 +2,8 @@
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: Chen Asraf <casraf@pm.me>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\AutoCurrency\Migration;

View File

@@ -1,5 +1,7 @@
<template>
<div class="autocurrency-{{ kebabCase name }}">{{ startCase name }} Page</div>
<div class="jukebox-{{ kebabCase name }}">{{ startCase name }} Page</div>
</template>
<script>
@@ -18,7 +20,8 @@ export default {
<style scoped lang="scss">
/*
#autocurrency-{{ kebabCase name }} {
#jukebox-{{ kebabCase name }} {
}
*/
</style>