Add field on EntryProposal: Visibility (set to "Public")

This commit is contained in:
Jonathan Bernard 2021-11-16 06:23:58 -06:00
parent 4e7b072745
commit fed6a48332
4 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ pnpm-debug.log*
.*.sw? .*.sw?
api/hff_entry_forms_api api/hff_entry_forms_api
api/test/runner

View File

@ -52,7 +52,8 @@ proc asNotionPage*(ep: EventProposal): JsonNode =
"Department": { "multi_select": [ { "name": ep.department } ] }, "Department": { "multi_select": [ { "name": ep.department } ] },
"Location": makeTextProp("rich_text", ep.location), "Location": makeTextProp("rich_text", ep.location),
"Owner": makeTextProp("rich_text", ep.owner), "Owner": makeTextProp("rich_text", ep.owner),
"State": { "select": { "name": "Proposed" } } "State": { "select": { "name": "Proposed" } },
"Visibility": { "select": { "name": "Public" } }
}, },
"children": [ "children": [
{ {

Binary file not shown.

View File

@ -15,6 +15,6 @@ suite "models":
date: parse("2021-10-30", "YYYY-MM-dd"), date: parse("2021-10-30", "YYYY-MM-dd"),
budgetInDollars: 56) budgetInDollars: 56)
let expectedJson = """{"properties":{"Event":{"title":[{"type":"text","text":{"content":"Test Event"}}]},"Date":{"date":{"start":"2021-10-30T00:00:00.000-05:00"}},"Department":{"multi_select":[{"name":"Testing"}]},"Location":{"rich_text":[{"type":"text","text":{"content":"Hope Family Fellowship"}}]},"Owner":{"rich_text":[{"type":"text","text":{"content":"Jonathan Bernard"}}]},"State":{"select":{"name":"Proposed"}}},"children":[{"object":"block","type":"heading_2","heading_2":{"text":[{"type":"text","text":{"content":"Purpose"}}]}},{"object":"block","type":"paragraph","paragraph":{"text":[{"type":"text","text":{"content":"Event example for unit testing."}}]}},{"object":"block","type":"heading_2","heading_2":{"text":[{"type":"text","text":{"content":"Description"}}]}},{"object":"block","type":"paragraph","paragraph":{"text":[{"type":"text","text":{"content":"A test event."}}]}}]}""" let expectedJson = """{"properties":{"Event":{"title":[{"type":"text","text":{"content":"Test Event"}}]},"Date":{"date":{"start":"2021-10-30T00:00:00.000-05:00"}},"Department":{"multi_select":[{"name":"Testing"}]},"Location":{"rich_text":[{"type":"text","text":{"content":"Hope Family Fellowship"}}]},"Owner":{"rich_text":[{"type":"text","text":{"content":"Jonathan Bernard"}}]},"State":{"select":{"name":"Proposed"}},"Visibility":{"select":{"name":"Public"}}},"children":[{"object":"block","type":"heading_2","heading_2":{"text":[{"type":"text","text":{"content":"Purpose"}}]}},{"object":"block","type":"paragraph","paragraph":{"text":[{"type":"text","text":{"content":"Event example for unit testing."}}]}},{"object":"block","type":"heading_2","heading_2":{"text":[{"type":"text","text":{"content":"Description"}}]}},{"object":"block","type":"paragraph","paragraph":{"text":[{"type":"text","text":{"content":"A test event."}}]}}]}"""
check $(ep.asNotionPage) == expectedJson check $(ep.asNotionPage) == expectedJson