From 2050c4915aac153bbbf2f58c718adc60d2752152 Mon Sep 17 00:00:00 2001 From: Sean <63349506+SerRichard@users.noreply.github.com> Date: Tue, 9 Jul 2024 15:59:01 +0200 Subject: [PATCH] Update orms.md (#55) --- docs/guide/orms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/orms.md b/docs/guide/orms.md index 41d6f26..533a10d 100644 --- a/docs/guide/orms.md +++ b/docs/guide/orms.md @@ -41,7 +41,7 @@ In order to effectively use the extended models, you need to update the models.p #### Using extended model -In order use the class ExtendedJob, we will need to extend the register. The example below extends the JobRegister and edits the create_job function to create the ExtendedJob and includes setting the value for the new parameter. You will need to version the database in order for the new model to work, and additionally add the NewJobsRegister to the app instance [See Registers](/guide/registers.md). +In order use the class ExtendedJob, we will need to extend the register. The example below extends the JobRegister and edits the create_job function to create the ExtendedJob and includes setting the value for the new parameter. You will need to version the database in order for the new model to work, and additionally add the NewJobsRegister to the app instance [See Registers](/guide/registers/). ... from openeo_fastapi.client.jobs import JobsRegister