refactor/Glossary Item: Dynamic Message Doc

This commit is contained in:
Marko Milić 2023-01-27 09:06:23 +01:00
parent 07917c5bdf
commit 1924db7308
2 changed files with 14 additions and 22 deletions

View File

@ -0,0 +1,14 @@
In OBP we largely define our endpoints using an internal case class or model called ResourceDoc
Using this endpoint, developers can create their own Resource Docs at run time thus creating fully featured
Open Bank Project style endpoints dynamically.
In order to do this you need to prepare your desired Resource Doc as JSON.
The business logic code can be written in the *method_body* field as encoded Scala code.
This feature is somewhat work in progress (WIP).
The following videos are available:
* [Introduction to Dynamic Resource Docs] (https://vimeo.com/623381607)

View File

@ -3064,28 +3064,6 @@ object Glossary extends MdcLoggable {
|
|""".stripMargin)
glossaryItems += GlossaryItem(
title = "Dynamic Resource Doc",
description =
s"""
| In OBP we largely define our endpoints using an internal case class or model called ResourceDoc
|
| Using this endpoint, developers can create their own Resource Docs at run time thus creating fully featured
| Open Bank Project style endpoints dynamically.
|
|
| In order to do this you need to prepare your desired Resource Doc as JSON.
| The business logic code can be written in the *method_body* field as encoded Scala code.
|
| This feature is somewhat work in progress (WIP).
|
|The following videos are available:
|* [Introduction to Dynamic Resource Docs] (https://vimeo.com/623381607)
|
|""".stripMargin)
glossaryItems += GlossaryItem(
title = "Dynamic Message Doc",
description =