refactor: renamed app to lms
This commit is contained in:
0
lms/config/__init__.py
Normal file
0
lms/config/__init__.py
Normal file
14
lms/config/desktop.py
Normal file
14
lms/config/desktop.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
from frappe import _
|
||||
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"module_name": "Community",
|
||||
"color": "grey",
|
||||
"icon": "octicon octicon-file-directory",
|
||||
"type": "module",
|
||||
"label": _("Community")
|
||||
}
|
||||
]
|
||||
11
lms/config/docs.py
Normal file
11
lms/config/docs.py
Normal file
@@ -0,0 +1,11 @@
|
||||
"""
|
||||
Configuration for docs
|
||||
"""
|
||||
|
||||
# source_link = "https://github.com/[org_name]/community"
|
||||
# docs_base_url = "https://[org_name].github.io/community"
|
||||
# headline = "App that does everything"
|
||||
# sub_heading = "Yes, you got that right the first time, everything"
|
||||
|
||||
def get_context(context):
|
||||
context.brand_html = "Community"
|
||||
Reference in New Issue
Block a user