Add field on EntryProposal: Visibility (set to "Public")
This commit is contained in:
parent
4e7b072745
commit
fed6a48332
1
.gitignore
vendored
1
.gitignore
vendored
@ -25,3 +25,4 @@ pnpm-debug.log*
|
||||
.*.sw?
|
||||
|
||||
api/hff_entry_forms_api
|
||||
api/test/runner
|
||||
|
@ -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": [
|
||||
{
|
||||
|
BIN
api/test/runner
BIN
api/test/runner
Binary file not shown.
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user