feat: Implement LTI deep linking, live sessions, predictive analytics, and portfolios with associated UI and database migrations.

This commit is contained in:
2026-02-24 09:37:16 -03:00
parent 7f7ea3d70c
commit 04dbe05704
81 changed files with 4119 additions and 249 deletions
@@ -0,0 +1,13 @@
-- Migration: Add LTI Deep Linking support tables
CREATE TABLE IF NOT EXISTS lti_deep_linking_requests (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
registration_id UUID NOT NULL REFERENCES lti_registrations(id),
deployment_id TEXT NOT NULL,
return_url TEXT NOT NULL,
data TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
-- Index for cleanup
CREATE INDEX idx_lti_dl_requests_created_at ON lti_deep_linking_requests(created_at);