loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'chore(license): clarify the API swagger file is and stays MIT (take 2)' (#5084) from earl-warren/forgejo:wip-gpl into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5084
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Reviewed-by: 0ko <0ko@noreply.codeberg.org>

+2
+2
Makefile
··· 185 185 SWAGGER_EXCLUDE := code.gitea.io/sdk 186 186 SWAGGER_NEWLINE_COMMAND := -e '$$a\' 187 187 SWAGGER_SPEC_BRANDING := s|Gitea API|Forgejo API|g 188 + SWAGGER_SPEC_LICENSE := s|"name": "MIT"|"name": "This file is distributed under the MIT license for the purpose of interoperability"| 188 189 189 190 TEST_MYSQL_HOST ?= mysql:3306 190 191 TEST_MYSQL_DBNAME ?= testgitea?multiStatements=true ··· 372 373 $(SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)' 373 374 $(SED_INPLACE) $(SWAGGER_NEWLINE_COMMAND) './$(SWAGGER_SPEC)' 374 375 $(SED_INPLACE) '$(SWAGGER_SPEC_BRANDING)' './$(SWAGGER_SPEC)' 376 + $(SED_INPLACE) '$(SWAGGER_SPEC_LICENSE)' './$(SWAGGER_SPEC)' 375 377 376 378 .PHONY: swagger-check 377 379 swagger-check: generate-swagger