Removed option that does not work

Этот коммит содержится в:
Reed Garmsen
2015-07-02 08:50:15 -07:00
родитель 6b48dbe231
Коммит 933578ca07
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@@ -469,7 +469,7 @@ func getMe(c *Context, w http.ResponseWriter, r *http.Request) {
} else {
result.Data.(*model.User).Sanitize(map[string]bool{})
w.Header().Set(model.HEADER_ETAG_SERVER, result.Data.(*model.User).Etag())
w.Header().Set("Cache-Control", "max-age=0, public") // should refresh
w.Header().Set("Expires", "-1")
w.Write([]byte(result.Data.(*model.User).ToJson()))
return
}

Просмотреть файл

@@ -280,14 +280,14 @@ module.exports.getMeSynchronous = function(success, error) {
url: "/api/v1/users/me",
dataType: 'json',
contentType: 'application/json',
cache: false,
//cache: false,
type: 'GET',
success: function(data, textStatus, xhr) {
current_user = data;
if (success) success(data, textStatus, xhr);
},
error: function(xhr, status, err) {
if (xhr.status != 200 && error) {
if (/*xhr.status != 200 && */error) {
e = handleError("getMeSynchronous", xhr, status, err);
error(e);
};