app
This commit is contained in:
parent
c5e27c0f70
commit
309925c191
28 changed files with 1757 additions and 4 deletions
|
|
@ -1,10 +1,31 @@
|
|||
from . import commands
|
||||
|
||||
app_name = "custom_ui"
|
||||
app_title = "Custom Ui"
|
||||
app_title = "Custom UI"
|
||||
app_publisher = "Shiloh Code LLC"
|
||||
app_description = "Custom UI"
|
||||
app_email = "casey@shilohcode.com"
|
||||
app_license = "mit"
|
||||
|
||||
after_install = "custom_ui.install.after_install"
|
||||
after_migrate = "custom_ui.install.after_migrate"
|
||||
# on_session_creation = "custom_ui.utils.on_login_redirect"
|
||||
# on_login = "custom_ui.utils.on_login_redirect"
|
||||
# page_js = {
|
||||
# "custom_ui": "custom_ui/custom_ui/page/custom_ui/custom_ui.js"
|
||||
# }
|
||||
|
||||
# app_include_js = ["/assets/custom_ui/dist/assets/main.js"]
|
||||
|
||||
add_to_apps_screen = [
|
||||
{
|
||||
"name": "custom_ui",
|
||||
"logo": "/assets/custom_ui/logo.png",
|
||||
"title": "Custom UI",
|
||||
"route": "/app/custom_ui",
|
||||
# "has_permission": "custom_ui.api.permission.has_app_permission"
|
||||
}
|
||||
]
|
||||
# Apps
|
||||
# ------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue