-
Notifications
You must be signed in to change notification settings - Fork 52
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
Centralize url path building #410
Conversation
} | ||
} | ||
} | ||
// Buttons |
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.
?
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.
Was code copied in from Tailwind but didn't end up using.
@@ -124,22 +124,10 @@ class BackfillCreateServiceIndexAction @Inject constructor( | |||
return Response(htmlResponseBody) | |||
} | |||
|
|||
enum class BackfillCreateField(val fieldId: String) { |
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.
Was this not used?
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.
Yeah unused
import kotlinx.html.img | ||
import kotlinx.html.nav | ||
|
||
fun TagConsumer<*>.NavBar(currentPath: String) { |
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.
We don't need this?
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.
Unused from initial work, replaced with the DashboardPageLayout
Code cleanup from #407 and centralizes all path building in per web action static methods.