forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the target path of the superset logo configuable (apache#6815)
* Make the target path of the superset logo configuable There is a need to have the target path of the logo go to different places in different installations of superset. The PR makes the target path (after `/superset`) configurable via the LOGO_TARGET_PATH configuration key and sets the default to the existing `/profile/{{ current_user.username }}/` * addressing pr comments
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,6 +112,10 @@ | |
APP_ICON = '/static/assets/images/[email protected]' | ||
APP_ICON_WIDTH = 126 | ||
|
||
# Uncomment to specify where clicking the logo would take the user | ||
# e.g. setting it to '/welcome' would take the user to '/superset/welcome' | ||
LOGO_TARGET_PATH = None | ||
|
||
# Druid query timezone | ||
# tz.tzutc() : Using utc timezone | ||
# tz.tzlocal() : Using local timezone | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters