1 Star 0 Fork 12

流风一剑1990 / 运维平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
url.txt 2.95 KB
一键复制 编辑 原始数据 按行查看 历史
yokiy 提交于 2018-05-09 17:56 . 第一次提交
treeAuth/
├── common-admin
│   ├── user-change /common/account/change/ 修改个人信息
│   ├── user-login /common/account/login/ 登录
│   ├── user-logout /common/account/logout/ 登出
│   ├── api-monitor-view /server/project/api/index/ API监控预览
│   └── project-view /server/project/app/index/ APP列表预览
├── server-admin /server/project/ 可以管理所有项目的超级权限
│   └── project-a /server/project/<int:project_id>/ 项目a的所有权限(包括后续新增app)
│ │
│   ├── api-monitor /server/project/<int:project_id>/api/ a项目api监控的所有权限
│   │   ├── delete /server/project/<int:project_id>/api/delete/ a项目api监控删除指定监控项
│   │   ├── edit /server/project/<int:project_id>/api/edit/ a项目api监控修改指定监控项
│   │   ├── add /server/project/<int:project_id>/api/add/ a项目api监控新增监控项
│   │   └── index /server/project/<int:project_id>/api/index/ a项目api监控查看所有监控项
│ │
│   ├── app-a1 /server/project/<int:project_id>/app/<int:app_id>/ a项目app1的所有权限
│   │   ├── delete /server/project/<int:project_id>/app/<int:app_id>/delete/
│   │   ├── edit /server/project/<int:project_id>/app/<int:app_id>/edit/
│   │   ├── task /server/project/<int:project_id>/app/<int:app_id>/task/
│   │   └── index /server/project/<int:project_id>/app/<int:app_id>/index/
│ │
│   ├── app-list /server/project/<int:project_id>/app/list/ 列出project-a下所有有权限app
│   └── app-add /server/project/<int:project_id>/app/add/ 新增app
├── other-admin
└── system-admin
├── project-admin /admin/project/ 项目管理
└── user-admin /admin/account/ 用户管理
应用权限:类型为APP
/server/project/<int:project_id>/app/add/ APP新增(前url为/server/app/<int:project_id>/add/)
/server/project/<int:project_id>/app/index/ APP列表预览
/server/app/<int:app_id>/detail/ APP详情
/server/app/<int:app_id>/edit/ APP编辑
/server/app/<int:app_id>/delete/ APP删除
/server/task/<int:app_id>/ APP执行(包含了/server/task/<int:app_id>/log/、/server/task/<int:app_id>/add/)
/server/api/<int:project_id>/detail/ API预览
/server/api/<int:project_id>/edit/ API新增修改
/server/api/<int:project_id>/delete/ API删除
管理员权限:类型为SYS
/admin/project/index/ 项目预览
/admin/project/edit/(?P<pk>[0-9]*)/ 项目编辑
/admin/project/edit/ 项目新增
/admin/project/delete/<int:project_id>/ 项目删除
/admin/account/index/ 用户预览
/admin/account/authority/<int:user_id>/ 用户权限配置
/admin/account/edit/<int:pk>/ 用户编辑
/admin/account/register/ 用户新增
/admin/account/delete/<int:pk>/ 用户删除
Python
1
https://gitee.com/liufengyijian/jdy_devops.git
git@gitee.com:liufengyijian/jdy_devops.git
liufengyijian
jdy_devops
运维平台
master

搜索帮助