Adding routes for getting link records based on a record Id.
This commit is contained in:
parent
a76a7525e3
commit
ecfca1dfab
|
@ -6,6 +6,16 @@ const { READ_MODEL, WRITE_MODEL } = require("../../utilities/accessLevels")
|
|||
const router = Router()
|
||||
|
||||
router
|
||||
.get(
|
||||
"/api/:modelId/:recordId/:fieldName/links",
|
||||
authorized(READ_MODEL, ctx => ctx.params.modelId),
|
||||
recordController.fetchLinkedRecords
|
||||
)
|
||||
.get(
|
||||
"/api/:modelId/:recordId/links",
|
||||
authorized(READ_MODEL, ctx => ctx.params.modelId),
|
||||
recordController.fetchLinkedRecords
|
||||
)
|
||||
.get(
|
||||
"/api/:modelId/records",
|
||||
authorized(READ_MODEL, ctx => ctx.params.modelId),
|
||||
|
|
Loading…
Reference in New Issue