code: nextjs,frontends,config (3 files)

This commit is contained in:
2025-12-26 03:31:25 +00:00
parent 62a2c16030
commit 89b6f4f46c
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { getAdapter } from '../dbal-client'
import { getAdapter } from '../../../../core/dbal-client'
import type { ComponentConfig } from '../types'
export async function addComponentConfig(config: ComponentConfig): Promise<void> {

View File

@@ -1,4 +1,4 @@
import { getAdapter } from '../dbal-client'
import { getAdapter } from '../../../../core/dbal-client'
export async function deleteComponentConfig(configId: string): Promise<void> {
const adapter = getAdapter()

View File

@@ -1,4 +1,4 @@
import { getAdapter } from '../dbal-client'
import { getAdapter } from '../../../../core/dbal-client'
import type { ComponentConfig } from '../types'
export async function updateComponentConfig(configId: string, updates: Partial<ComponentConfig>): Promise<void> {