diff --git a/.gitignore b/.gitignore index 0a929ca..87cb9c2 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ pnpm-debug.log* .*.sw? api/hff_entry_forms_api +api/test/runner diff --git a/api/src/hff_entry_forms_apipkg/models.nim b/api/src/hff_entry_forms_apipkg/models.nim index e1ba6b5..13f9f70 100644 --- a/api/src/hff_entry_forms_apipkg/models.nim +++ b/api/src/hff_entry_forms_apipkg/models.nim @@ -52,7 +52,8 @@ proc asNotionPage*(ep: EventProposal): JsonNode = "Department": { "multi_select": [ { "name": ep.department } ] }, "Location": makeTextProp("rich_text", ep.location), "Owner": makeTextProp("rich_text", ep.owner), - "State": { "select": { "name": "Proposed" } } + "State": { "select": { "name": "Proposed" } }, + "Visibility": { "select": { "name": "Public" } } }, "children": [ { diff --git a/api/test/runner b/api/test/runner deleted file mode 100755 index 0dfedcd..0000000 Binary files a/api/test/runner and /dev/null differ diff --git a/api/test/tmodels.nim b/api/test/tmodels.nim index 2c6ed62..bf7bda9 100644 --- a/api/test/tmodels.nim +++ b/api/test/tmodels.nim @@ -15,6 +15,6 @@ suite "models": date: parse("2021-10-30", "YYYY-MM-dd"), 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