This commit is contained in:
wh_zcy 2022-11-03 11:53:18 +08:00
parent 4021c0dff1
commit 844913b0d7

View File

@ -117,6 +117,8 @@ var (
ff(comm.ModuleSociaty, sociaty.SociatySubTypeRank): &formview.SociatyRankView{}, ff(comm.ModuleSociaty, sociaty.SociatySubTypeRank): &formview.SociatyRankView{},
// troll // troll
ff(comm.ModuleTroll, "getlist"): &formview.TrollGetlistView{}, ff(comm.ModuleTroll, "getlist"): &formview.TrollGetlistView{},
// alliance
// ff(comm.ModuleAlliance,"")
} }
) )
@ -141,6 +143,7 @@ var (
string(comm.ModuleGourmet), string(comm.ModuleGourmet),
string(comm.ModuleSociaty), string(comm.ModuleSociaty),
string(comm.ModuleTroll), string(comm.ModuleTroll),
string(comm.ModuleAlliance),
}, },
"gm": {ff(comm.ModuleGM, "cmd")}, "gm": {ff(comm.ModuleGM, "cmd")},
"sys": { "sys": {
@ -875,6 +878,12 @@ var (
SubType: "getlist", SubType: "getlist",
Enabled: true, Enabled: true,
}, },
// alliance
string(comm.ModuleAlliance): {
NavLabel: "联盟学院",
MainType: string(comm.ModuleAlliance),
Enabled: true,
},
} }
) )