- Restructure: move backend from new_project/ to backend/ - Add full React/TypeScript frontend (37 pages, 17 services, 16 type defs, 11 query hooks) - Add docs/ with SRS specs, user stories, and workflow documentation - Update .gitignore for new directory layout Workflows implemented: WF1 User Signup, WF2 Placement Test, WF3 Exam Configuration, WF4 General English Exam, WF5 Course Generation, WF6 Entity Student Onboarding, AI Course Generation, Adaptive Learning Engine UI, White-Label Branding, Score Release Made-with: Cursor
15 lines
562 B
XML
15 lines
562 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo noupdate="1">
|
|
|
|
<record id="ir_cron_adaptive_no_progress_alert" model="ir.cron">
|
|
<field name="name">EnCoach: Check Student Progress Alerts</field>
|
|
<field name="model_id" search="[('model', '=', 'encoach.adaptive.settings')]"/>
|
|
<field name="state">code</field>
|
|
<field name="code">model._cron_check_no_progress()</field>
|
|
<field name="interval_number">1</field>
|
|
<field name="interval_type">days</field>
|
|
<field name="active" eval="True"/>
|
|
</record>
|
|
|
|
</odoo>
|