chore: set banner URL default in config, remove old mentions of redis

This commit is contained in:
2025-09-13 14:48:49 -05:00
parent e3b638a7d8
commit 94fb6b4190
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ pub async fn get_course_by_crn(ctx: &Context<'_>, crn: i32) -> Result<Course> {
let current_term_status = Term::get_current();
let term = current_term_status.inner();
// Fetch live course data from Redis cache via AppState
// Fetch live course data from database via AppState
app_state
.get_course_or_fetch(&term.to_string(), &crn.to_string())
.await