1
0
mirror of synced 2024-11-22 04:26:01 +03:00

move activity callback types out of project

This commit is contained in:
Alex Lushpai 2018-06-01 17:58:49 +03:00
parent fb065d167d
commit f238d96f17

View File

@ -482,17 +482,6 @@ func createHandler(w http.ResponseWriter, r *http.Request) {
w.Write(jss)
}
type ActivityCallback struct {
ClientId string `json:"clientId"`
Activity Activity `json:"activity"`
SystemUrl string `json:"systemUrl,omitempty"`
}
type Activity struct {
Active bool `json:"active"`
Freeze bool `json:"freeze"`
}
func activityHandler(w http.ResponseWriter, r *http.Request) {
setLocale(r.Header.Get("Accept-Language"))
w.Header().Set("Content-Type", "application/json")
@ -524,7 +513,7 @@ func activityHandler(w http.ResponseWriter, r *http.Request) {
return
}
var rec ActivityCallback
var rec v5.ActivityCallback
err = json.Unmarshal(body, &rec)
if err != nil {