-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Pages POC #4396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Pages POC #4396
Conversation
Co-authored-by: Doug Lauder <[email protected]>
@@ -0,0 +1,3 @@ | |||
{{- /* addColumnIfNeeded tableName columnName datatype constraint */ -}} | |||
{{ addColumnIfNeeded "boards" "is_pages_folder" "boolean" "false"}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The last parameter should be "default false"
not just false
. The current command generates syntax error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow...huge! I didn't see anything egregious, but kept loosing myself. One thing not clear to me from the code is
category -> board -> page(s)
Seems like an extra layer in there. But probably just not clear.
Also, before merging I think we should bug bash both with the feature flag off and on. Let's get a couple spinwicks up and try to bug bash (ff off) next week.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if and when we'll be doing this, so taking this off of my PR to review list by requesting a review.
Summary
Pages POC
Pending work
The most outstanding pending work here is to stabilize the changes in the router, I'm no longer using a new router for pages/boards, I'm using the main router and generating the prefix for the routes based on the urls needed to be generated, none for standalone/app mode, and
/boards
and/pages
for boards and pages itself.This is not working great, there are some problems specially in team switch while you are in pages/boards, but I think I can sort it out sooner than later.