This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
db schema update, added CourseDetails model and some other fields
- Loading branch information
Showing
3 changed files
with
65 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { AuthenticationError, requireAdminAuth } from "../auth"; | ||
|
||
type MdxGetCompiledSourceProps = { | ||
courseSlug: string; | ||
partSlug?: string; | ||
lessonSlug?: string; | ||
access: "PUBLIC" | "USER" | "ADMIN"; | ||
} | ||
/** | ||
* WIP | ||
*/ | ||
const mdxGetCompiledSource = async ({ | ||
courseSlug, partSlug, lessonSlug, access | ||
}: MdxGetCompiledSourceProps) => { | ||
try { | ||
await requireAdminAuth(); | ||
|
||
|
||
|
||
|
||
|
||
return; | ||
} catch (error) { | ||
|
||
if (error instanceof AuthenticationError) { | ||
throw error; // Rethrow custom error as-is | ||
} | ||
throw new Error("An error occurred while fetching courses."); | ||
} | ||
} |