fix: consistente naamgeving kebab case

This commit is contained in:
Gabriellvl 2025-03-07 20:04:46 +01:00
parent 3b71c80be6
commit b8db32161f
11 changed files with 21 additions and 21 deletions

View file

@ -1,12 +1,12 @@
import { DWENGO_API_BASE } from '../config.js';
import { fetchWithLogging } from '../util/apiHelper.js';
import { fetchWithLogging } from '../util/api-helper.js';
import {
FilteredLearningObject,
LearningObjectMetadata,
LearningObjectNode,
LearningPathResponse,
} from '../interfaces/learningPath.js';
import { fetchLearningPaths } from './learningPaths.js';
} from '../interfaces/learning-path.js';
import { fetchLearningPaths } from './learning-paths.js';
function filterData(
data: LearningObjectMetadata,

View file

@ -1,9 +1,9 @@
import { fetchWithLogging } from '../util/apiHelper.js';
import { fetchWithLogging } from '../util/api-helper.js';
import { DWENGO_API_BASE } from '../config.js';
import {
LearningPath,
LearningPathResponse,
} from '../interfaces/learningPath.js';
} from '../interfaces/learning-path.js';
export async function fetchLearningPaths(
hruids: string[],