single-sign-on
single-sign-on copied to clipboard
项目稳定性
请问这个在实际项目中使用了吗,稳定不?
同问
稳定不稳定我不清楚,但是我有个问题想需要指教,就是有一个依赖包没有装不了,包名是:github.com/mattermost/platform/model,这个包,我在github也找不到仓库
很稳
稳如🐶
我是小白,不知道各路大神这个项目怎么用
这个项目有没有web管理地址,怎么访问后台
func root(c *api.Context, w http.ResponseWriter, r *http.Request) { if !CheckBrowserCompatability(c, r) { w.WriteHeader(http.StatusBadRequest) w.Header().Set("Cache-Control", "no-store") w.Write([]byte(c.T("web.check_browser_compatibility.app_error"))) return }
if api.IsApiCall(r) {
api.Handle404(w, r)
return
}
w.Header().Set("Cache-Control", "no-cache, max-age=31556926, public")
clientDir, _ := utils.FindDir(model.CLIENT_DIR)
http.ServeFile(w, r, clientDir+"index.html")
} 我看web.go中的handler 是访问index.html,但是我实在没找到index.html在哪里