-
-
Notifications
You must be signed in to change notification settings - Fork 987
feat: add custom branding #575
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,7 @@ import { | |
| HIDE_HISTORY, | ||
| HTTP_ALLOWED, | ||
| WEBROOT, | ||
| BRANDING | ||
| } from "../helpers/env"; | ||
|
|
||
| export let FIRST_RUN = db.query("SELECT * FROM users").get() === null || false; | ||
|
|
@@ -136,6 +137,7 @@ export const user = new Elysia() | |
| <> | ||
| <Header | ||
| webroot={WEBROOT} | ||
| branding={BRANDING} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: A Prompt for AI agents |
||
| accountRegistration={ACCOUNT_REGISTRATION} | ||
| allowUnauthenticated={ALLOW_UNAUTHENTICATED} | ||
| hideHistory={HIDE_HISTORY} | ||
|
|
@@ -258,6 +260,7 @@ export const user = new Elysia() | |
| <> | ||
| <Header | ||
| webroot={WEBROOT} | ||
| branding={BRANDING} | ||
| accountRegistration={ACCOUNT_REGISTRATION} | ||
| allowUnauthenticated={ALLOW_UNAUTHENTICATED} | ||
| hideHistory={HIDE_HISTORY} | ||
|
|
@@ -392,6 +395,7 @@ export const user = new Elysia() | |
| <> | ||
| <Header | ||
| webroot={WEBROOT} | ||
| branding={BRANDING} | ||
| accountRegistration={ACCOUNT_REGISTRATION} | ||
| allowUnauthenticated={ALLOW_UNAUTHENTICATED} | ||
| hideHistory={HIDE_HISTORY} | ||
|
|
||
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.
P2: Fresh installations still show
Welcome to ConvertX!instead of the configured brand because theFIRST_RUNredirect lands on/setup, which is not included in this branding wiring. Applying the branding to the setup heading/shell would keep the first-run experience consistent.Prompt for AI agents
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.
This is intentional, I don't see any sense in change of that