Skip to content

Commit

Permalink
feat(cb2-7977): adds new roles for viewing and amending reference data (
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewf-bjss committed Apr 14, 2023
1 parent eeaf71f commit 1b50f1a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/functions/functionalConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,16 @@ export const functionConfig: { [key: string]: NonEmptyArray<IApiAccess> } = {
path: "v1/document-retrieval",
},
],
"ReferenceData.View": [
{
verbs: ["GET", "OPTIONS"],
path: "reference/*",
}
],
"ReferenceData.Amend": [
{
verbs: ["GET", "OPTIONS", "PUT", "POST", "DELETE"],
path: "reference/*",
}
],
};

0 comments on commit 1b50f1a

Please sign in to comment.