Skip to content

Commit

Permalink
Merge pull request #1340 from longguikeji/release-2.6.x
Browse files Browse the repository at this point in the history
Release 2.6.0
  • Loading branch information
notevery authored Oct 12, 2022
2 parents 10847a6 + a991152 commit 72a2334
Show file tree
Hide file tree
Showing 140 changed files with 3,552 additions and 19,533 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,11 @@ db.sqlite3-journal
djangosaml2idp/saml2_config/*.xml

arkid_extensions
arkid_celery_tasks

.devcontainer/
storage/
results.sqlite

tasks
~
2 changes: 1 addition & 1 deletion api/v1/pages/app_manage/app_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
path=tag,
name=name,
page=page,
icon='app',
icon='app_group',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/app_manage/app_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
router = routers.FrontRouter(
path=tag,
name=name,
icon='list',
icon='app_list',
page=page,
)

Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/app_manage/app_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path=tag,
name=name,
page=page,
icon='protocal',
icon='app_protocal',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/approve_manage/all_approve_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
path=tag,
name=name,
page=page,
icon='request',
icon='approve_request',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/approve_manage/approve_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='action',
icon='approve_action',
)

page.create_actions(
Expand Down
1 change: 1 addition & 0 deletions api/v1/pages/approve_manage/approve_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
path=tag,
name=name,
page=page,
icon='approve_system'
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/auth_manage/auth_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='factor',
icon='auth_factor',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/auth_manage/auth_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='rule',
icon='auth_rule',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/auth_manage/auto_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='auto',
icon='auto_auth',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/auth_manage/third_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='third',
icon='third_auth',
)

page.create_actions(
Expand Down
4 changes: 2 additions & 2 deletions api/v1/pages/charts_manage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from . import bi_systems,charts

router = routers.FrontRouter(
path='charts',
path='charts_manage',
name='图表分析',
icon='charts',
icon='charts_manage',
children=[
charts.router,
bi_systems.router,
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/charts_manage/bi_systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='bi',
icon='bi_system',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/data_source_manage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
router = routers.FrontRouter(
path='data_source',
name='身份数据源',
icon='source',
icon='data_source',
children=[
scim_sync.router,
permission_sync.router,
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/data_source_manage/permission_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='sync',
icon='permission_sync',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/data_source_manage/scim_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='scim',
icon='scim_sync',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/desktop/mine_app_group_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
path=tag,
name=name,
page=page,
icon='app',
icon='app_group_list',
)

page.create_actions(
Expand Down
3 changes: 2 additions & 1 deletion api/v1/pages/developer_manage/api_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
router = FrontRouter(
path=tag,
name=name,
url='/api/v1/tenant/{tenant_id}/docs/redoc/'
url='/api/v1/tenant/{tenant_id}/docs/redoc/',
icon='api_doc'
)
2 changes: 1 addition & 1 deletion api/v1/pages/developer_manage/event_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path=tag,
name=name,
page=page,
icon='list',
icon='event_list',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/extension_manage/extension_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
path=tag,
name=name,
page=page,
icon='extension',
icon='extension_admin',
)

page.add_pages([
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/extension_manage/extension_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
path=tag,
name=name,
page=page,
icon='extension',
icon='tenant_extension_manage',
)

platform_extension_page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/log_manage/log_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
path=tag,
name=name,
page=page,
icon='settings',
icon='log_config',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/message/message_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
path=tag,
name=name,
page=page,
icon='message',
icon='message_manage',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/mine/approve_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
router = routers.FrontRouter(
path=tag,
name=name,
icon='app',
icon='mine_approve_request',
page=page,
)

Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/mine/auth_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
router = routers.FrontRouter(
path=tag,
name=name,
icon='auth',
icon='mine_auth_manage',
page=page
)
2 changes: 1 addition & 1 deletion api/v1/pages/mine/grant_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
router = routers.FrontRouter(
path=tag,
name=name,
icon='app',
icon='mine_grant_manage',
page=page,
)

Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/mine/mine_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
path=tag,
name=name,
page=page,
icon='message',
icon='mine_message',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/mine/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
path=tag,
name=name,
page=page,
icon='profile',
icon='mine_profile',
)

page.add_pages([profile_page])
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/permission_manage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
router = routers.FrontRouter(
path='permission_manage',
name=_('权限管理'),
icon='list',
icon='permission_manage',
children=[
permission_list.router,
permission_group.router,
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/permission_manage/grant_manage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
path='grant_manage',
name=_('授权管理'),
page=page,
icon='grant',
icon='grant_manage',
)
2 changes: 1 addition & 1 deletion api/v1/pages/permission_manage/grant_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='rule',
icon='grant_rule',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/permission_manage/permission_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
path=tag,
name=name,
page=page,
icon='group',
icon='permission_group',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/permission_manage/permission_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='list',
icon='permission_list',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/platform_admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
router = routers.FrontRouter(
path='platform_admin',
name=_('平台管理'),
icon='platform',
icon='platform_admin',
children=[
language_admin.router,
tenant_admin.router,
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/platform_admin/language_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
path=tag,
name=name,
page=page,
icon='language',
icon='language_admin',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/platform_admin/platform_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
path=tag,
name=name,
page=page,
icon='settings',
icon='platform_config',
)

pages.register_front_pages(page)
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/platform_admin/tenant_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path=tag,
name=name,
page=page,
icon='list',
icon='tenant_admin',
)


Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/tenant_manage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
router = routers.FrontRouter(
path='tenant_manage',
name=_('租户管理'),
icon='tenant',
icon='tenant_manage',
children=[
tenant_config.router,
child_manager.router,
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/tenant_manage/center_arkid.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
path=tag,
name=name,
page=page,
icon='center',
icon='center_arkid',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/tenant_manage/child_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
path=tag,
name=name,
page=page,
icon='child',
icon='child_manager',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/tenant_manage/tenant_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path=tag,
name=name,
page=page,
icon='settings',
icon='tenant_config',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/user_manage/account_life.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
path=tag,
name=name,
page=page,
icon='life',
icon='account_life',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/user_manage/user_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
path=tag,
name=name,
page=page,
icon='user',
icon='user_group',
)

page.create_actions(
Expand Down
2 changes: 1 addition & 1 deletion api/v1/pages/user_manage/user_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
router = routers.FrontRouter(
path=tag,
name=name,
icon='list',
icon='user_list',
page=page,
)

Expand Down
Loading

0 comments on commit 72a2334

Please sign in to comment.