mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
[BRANDING] Update nodeinfo branding
- Change the values for the nodeinfo API, to use branded values. - Resolves https://codeberg.org/forgejo/forgejo/issues/257 (cherry picked from commit4608c57688
) (cherry picked from commite837e8a529
) (cherry picked from commit6601328d3c
) (cherry picked from commitc6be21d487
) (cherry picked from commit5adc6ffee2
) (cherry picked from commit2ff8d166ac
) (cherry picked from commitb6a90e7e5a
) (cherry picked from commitd1089e706c
) Conflicts: tests/integration/api_nodeinfo_test.go (cherry picked from commit7a29df737d
) (cherry picked from commit3655a30c60
) (cherry picked from commitc90d611410
) (cherry picked from commit0274bd8860
) (cherry picked from commitfdb786b71d
) (cherry picked from commit4f08f100a1
) (cherry picked from commit56a2711822
) (cherry picked from commit3b2cfa452d
) (cherry picked from commit773ddcf956
) (cherry picked from commitfe8321ed4e
) (cherry picked from commita94833643b
) (cherry picked from commit3fdbda7639
) (cherry picked from commit7bc63d2cd3
) (cherry picked from commita36400d9cf
) (cherry picked from commit2535ab4201
) (cherry picked from commit692e72f4f6
) (cherry picked from commit265021f3e9
) (cherry picked from commitbc833125d6
) (cherry picked from commitf1f9f88155
) (cherry picked from commit6076461ad7
) (cherry picked from commitcd1da0aa2b
) (cherry picked from commitf4e9a251d8
) (cherry picked from commitfed4a421ac
) (cherry picked from commitcb3ef32117
) (cherry picked from commit232eec1945
) (cherry picked from commit1390cd433a
) (cherry picked from commite1fed5dd7f
) (cherry picked from commit5797dcbeb7
) (cherry picked from commit7591d86b43
) (cherry picked from commit96eea095f6
) (cherry picked from commit0a29bba0fb
) (cherry picked from commit075da8a237
) (cherry picked from commitd2a3085458
) (cherry picked from commitdd39faa96c
) (cherry picked from commit9f15e5cc49
)
This commit is contained in:
parent
da330b1e51
commit
9a7e041380
2 changed files with 4 additions and 4 deletions
|
@ -63,10 +63,10 @@ func NodeInfo(ctx *context.APIContext) {
|
|||
nodeInfo := &structs.NodeInfo{
|
||||
Version: "2.1",
|
||||
Software: structs.NodeInfoSoftware{
|
||||
Name: "gitea",
|
||||
Name: "forgejo",
|
||||
Version: setting.AppVer,
|
||||
Repository: "https://github.com/go-gitea/gitea.git",
|
||||
Homepage: "https://gitea.io/",
|
||||
Repository: "https://codeberg.org/forgejo/forgejo.git",
|
||||
Homepage: "https://forgejo.org/",
|
||||
},
|
||||
Protocols: []string{"activitypub"},
|
||||
Services: structs.NodeInfoServices{
|
||||
|
|
|
@ -31,7 +31,7 @@ func TestNodeinfo(t *testing.T) {
|
|||
var nodeinfo api.NodeInfo
|
||||
DecodeJSON(t, resp, &nodeinfo)
|
||||
assert.True(t, nodeinfo.OpenRegistrations)
|
||||
assert.Equal(t, "gitea", nodeinfo.Software.Name)
|
||||
assert.Equal(t, "forgejo", nodeinfo.Software.Name)
|
||||
assert.Equal(t, 25, nodeinfo.Usage.Users.Total)
|
||||
assert.Equal(t, 20, nodeinfo.Usage.LocalPosts)
|
||||
assert.Equal(t, 3, nodeinfo.Usage.LocalComments)
|
||||
|
|
Loading…
Reference in a new issue