Rename functions

pull/115/head
Jared He 2 years ago
parent b32fd53d95
commit fecd3bf3e0
  1. 4
      lib/events.ts

@ -8,14 +8,14 @@ import { serialize } from "next-mdx-remote/serialize";
const EVENTS_PATH = path.join("content", "events");
const TERMS = ["winter", "spring", "fall"];
export async function getYears(): Promise<string[]> {
export async function getEventYears(): Promise<string[]> {
return (await fs.readdir(EVENTS_PATH, { withFileTypes: true }))
.filter((dirent) => dirent.isDirectory())
.map((dirent) => dirent.name)
.sort();
}
export async function getTermsByYear(year: string): Promise<string[]> {
export async function getEventTermsByYear(year: string): Promise<string[]> {
return (
await fs.readdir(path.join(EVENTS_PATH, year), { withFileTypes: true })
)

Loading…
Cancel
Save