Skip to content

Commit

Permalink
chore(eb-app-api): comments related with attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Apr 6, 2024
1 parent f33decf commit 4e3efb2
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export function checkScheduleAttr(scheduleAttr: Attr) {
}
}

// -----------------------------------------------------------------------------
// the structure of scheduleAttr must be checked before calling this function
// -----------------------------------------------------------------------------
async function addMeetingSessionOnce(
trans: Transaction,
Expand All @@ -70,6 +72,8 @@ async function addMeetingSessionOnce(
await trans.queryObject(sql);
}

// -----------------------------------------------------------------------------
// the structure of scheduleAttr must be checked before calling this function
// -----------------------------------------------------------------------------
async function addMeetingSessionDaily(
trans: Transaction,
Expand All @@ -82,6 +86,8 @@ async function addMeetingSessionDaily(
await console.log(scheduleAttr);
}

// -----------------------------------------------------------------------------
// the structure of scheduleAttr must be checked before calling this function
// -----------------------------------------------------------------------------
async function addMeetingSessionWeekly(
trans: Transaction,
Expand All @@ -94,6 +100,8 @@ async function addMeetingSessionWeekly(
await console.log(scheduleAttr);
}

// -----------------------------------------------------------------------------
// the structure of scheduleAttr must be checked before calling this function
// -----------------------------------------------------------------------------
export async function addMeetingSession(
trans: Transaction,
Expand Down

0 comments on commit 4e3efb2

Please sign in to comment.