You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master: (252 commits)
Issues overview should not show issues from archived repos (go-gitea#13220)
Display SVG files as images instead of text (go-gitea#14101)
[skip ci] Updated translations via Crowdin
Update docs to clarify issues raised in go-gitea#14272 (go-gitea#14318)
[skip ci] Updated translations via Crowdin
[Refactor] Passwort Hash/Set (go-gitea#14282)
Add option to change username to the admin panel (go-gitea#14229)
fix mailIssueCommentBatch for pull request (go-gitea#14252)
Remove self from MAINTAINERS (go-gitea#14286)
Do not reload page after adding comments in Pull Request reviews (go-gitea#13877)
Fix session bug when introduce chi (go-gitea#14287)
[skip ci] Updated translations via Crowdin
Add secure/httpOnly attributes to the lang cookie (go-gitea#9690) (go-gitea#14279)
Some code improvements (go-gitea#14266)
[skip ci] Updated translations via Crowdin
Fix wrong type on hooktask to convert typ from char(16) to varchar(16) (go-gitea#14148)
Upgrade XORM links in documentation. (go-gitea#14265)
Check permission for the appropriate unit type (go-gitea#14261)
Add compliance check for windows to ensure cross platform build (go-gitea#14260)
[skip ci] Updated translations via Crowdin
...
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ import (
158
158
To maintain understandable code and avoid circular dependencies it is important to have a good structure of the code. The gitea code is divided into the following parts:
159
159
160
160
-**integration:** Integrations tests
161
-
-**models:** Contains the data structures used by xorm to construct database tables. It also contains supporting functions to query and update the database. Dependecies to other code in Gitea should be avoided although some modules might be needed (for example for logging).
161
+
-**models:** Contains the data structures used by xorm to construct database tables. It also contains supporting functions to query and update the database. Dependencies to other code in Gitea should be avoided although some modules might be needed (for example for logging).
162
162
-**models/fixtures:** Sample model data used in integration tests.
163
163
-**models/migrations:** Handling of database migrations between versions. PRs that changes a database structure shall also have a migration step.
164
164
-**modules:** Different modules to handle specific functionality in Gitea.
@@ -181,16 +181,16 @@ The same applies to status responses. If you notice a problem, feel free to leav
181
181
All expected results (errors, success, fail messages) should be documented
0 commit comments