[PR #13] [MERGED] Dev #129

Closed
opened 2026-02-28 00:38:49 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/team-ide/teamide/pull/13
Author: @team-ide
Created: 1/22/2022
Status: Merged
Merged: 1/22/2022
Merged by: @team-ide

Base: mainHead: dev


📝 Commits (10+)

  • 3eebf20 添加表单组件,表单验证等
  • 0c34eff 提交登录页面设计
  • 0faf094 修改加解密库,添加注册、登录、登出、展示登录用户等
  • 8efc78a 添加frame的识别 和体部分块
  • 3b8a37d 移除session,使用JWT验证登录,客户端cookie存储JWT信息
  • 3dd3030 修改JWT刷新规则为每次请求会话刷新,前端10分钟请求一次会话,后台JWT失效时间为2小时
  • 8e70dce 添加系统管理菜单导航
  • 3750597 服务添加基础权限,页面添加导航刷新等
  • 9acb6b7 添加所有权限操作,设置基础代码
  • 6dba5a5 添加Sql Model操作

📊 Changes

288 files changed (+15545 additions, -1824 deletions)

View changed files

📝 .github/workflows/release.yml (+52 -54)
📝 .gitignore (+4 -2)
RELEASE.md (+0 -6)
application/README.md (+3 -0)
application/app.go (+252 -0)
application/base/aes.go (+122 -0)
application/base/error.go (+76 -0)
application/base/package.go (+1 -0)
application/base/struct_map.go (+193 -0)
application/base/util.go (+215 -0)
application/coder/database.go (+326 -0)
application/coder/package.go (+1 -0)
application/common/application.go (+27 -0)
application/common/error.go (+35 -0)
application/common/file.go (+1 -0)
application/common/invoke.go (+519 -0)
application/common/javascriptByTest.go (+24 -0)
application/common/javascript_executor.go (+7 -0)
application/common/javascript_service.go (+626 -0)
application/common/javascript_service_sql.go (+396 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/team-ide/teamide/pull/13 **Author:** [@team-ide](https://github.com/team-ide) **Created:** 1/22/2022 **Status:** ✅ Merged **Merged:** 1/22/2022 **Merged by:** [@team-ide](https://github.com/team-ide) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3eebf20`](https://github.com/team-ide/teamide/commit/3eebf204ad8b40e23c5f8442e2a58b59411525d3) 添加表单组件,表单验证等 - [`0c34eff`](https://github.com/team-ide/teamide/commit/0c34efff5b75d4325e1245e3ddf2cbfa5c0ac14b) 提交登录页面设计 - [`0faf094`](https://github.com/team-ide/teamide/commit/0faf094af5d2f10234b22c91eb7562dd2cdf4c07) 修改加解密库,添加注册、登录、登出、展示登录用户等 - [`8efc78a`](https://github.com/team-ide/teamide/commit/8efc78a8abed7286813129277c65dc10874ee4bd) 添加frame的识别 和体部分块 - [`3b8a37d`](https://github.com/team-ide/teamide/commit/3b8a37d5049fe1d5a17f183bc01989e26f10d8bf) 移除session,使用JWT验证登录,客户端cookie存储JWT信息 - [`3dd3030`](https://github.com/team-ide/teamide/commit/3dd30303b399f10615eba972f2a96cff83c5f441) 修改JWT刷新规则为每次请求会话刷新,前端10分钟请求一次会话,后台JWT失效时间为2小时 - [`8e70dce`](https://github.com/team-ide/teamide/commit/8e70dce0a9495d9ac9f4d92b150c18710448cac1) 添加系统管理菜单导航 - [`3750597`](https://github.com/team-ide/teamide/commit/375059776a313fcfe3b3d654dd0ca57b9428e2fe) 服务添加基础权限,页面添加导航刷新等 - [`9acb6b7`](https://github.com/team-ide/teamide/commit/9acb6b7cd5ef2c8b1fe8f4a635020c5f18b12bf7) 添加所有权限操作,设置基础代码 - [`6dba5a5`](https://github.com/team-ide/teamide/commit/6dba5a5ac4096c5d3dc3a9c2ddafc0767b5ddb18) 添加Sql Model操作 ### 📊 Changes **288 files changed** (+15545 additions, -1824 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+52 -54) 📝 `.gitignore` (+4 -2) ➖ `RELEASE.md` (+0 -6) ➕ `application/README.md` (+3 -0) ➕ `application/app.go` (+252 -0) ➕ `application/base/aes.go` (+122 -0) ➕ `application/base/error.go` (+76 -0) ➕ `application/base/package.go` (+1 -0) ➕ `application/base/struct_map.go` (+193 -0) ➕ `application/base/util.go` (+215 -0) ➕ `application/coder/database.go` (+326 -0) ➕ `application/coder/package.go` (+1 -0) ➕ `application/common/application.go` (+27 -0) ➕ `application/common/error.go` (+35 -0) ➕ `application/common/file.go` (+1 -0) ➕ `application/common/invoke.go` (+519 -0) ➕ `application/common/javascriptByTest.go` (+24 -0) ➕ `application/common/javascript_executor.go` (+7 -0) ➕ `application/common/javascript_service.go` (+626 -0) ➕ `application/common/javascript_service_sql.go` (+396 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 00:38:49 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/teamide-team-ide#129
No description provided.