Update lecture properties and various migration changes

Modified code to remove 'status' field from lecture's table and added 'event_uuid' field. Also refined the 'start_time' field in recordings' table to handle datetime instead of strings. Further, made minor changes in scraping jobs and seeding logic. Implemented these changes to allow lectures to be associated with calendar events and streamlined various fields.
This commit is contained in:
2023-10-01 19:44:20 +01:00
parent 070816f0a2
commit d9d182bc94
13 changed files with 153 additions and 36 deletions
+6 -5
View File
@@ -1,10 +1,11 @@
Rails.application.routes.draw do
namespace :admin do
resources :attendances
resources :courses
resources :lectures
resources :attendances
resources :courses
resources :lectures
root to: "attendances#index"
end
root to: "attendances#index"
end
root controller: :attendance_tracker, action: :index
end