0
app/accounting/__init__.py
Normal file
0
app/accounting/__init__.py
Normal file
6
app/accounting/apps.py
Normal file
6
app/accounting/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AccountingConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'accounting'
|
0
app/accounting/migrations/__init__.py
Normal file
0
app/accounting/migrations/__init__.py
Normal file
8
app/accounting/urls.py
Normal file
8
app/accounting/urls.py
Normal file
@ -0,0 +1,8 @@
|
||||
from centurion_feature_flag.urls.routers import DefaultRouter
|
||||
|
||||
|
||||
app_name = "accounting"
|
||||
|
||||
router = DefaultRouter(trailing_slash=False)
|
||||
|
||||
urlpatterns = router.urls
|
@ -392,6 +392,11 @@ class ReactUIMetadata(OverRideJSONAPIMetadata):
|
||||
}
|
||||
}
|
||||
},
|
||||
'accounting': {
|
||||
"display_name": "Accounting",
|
||||
"name": "accounting",
|
||||
"pages": {}
|
||||
},
|
||||
'assistance': {
|
||||
"display_name": "Assistance",
|
||||
"name": "assistance",
|
||||
|
@ -257,6 +257,7 @@ urlpatterns = [
|
||||
urlpatterns += router.urls
|
||||
|
||||
urlpatterns += [
|
||||
path("accounting/", include("accounting.urls")),
|
||||
path("devops/", include("devops.urls")),
|
||||
path("hr/", include('human_resources.urls')),
|
||||
path('public/', include('api.urls_public')),
|
||||
|
@ -141,6 +141,7 @@ INSTALLED_APPS = [
|
||||
'centurion_feature_flag.apps.CenturionFeatureFlagConfig',
|
||||
'human_resources.apps.HumanResourcesConfig',
|
||||
'itops.apps.ItOpsConfig',
|
||||
'accounting.apps.AccountingConfig',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
Reference in New Issue
Block a user