Этот коммит содержится в:
Jesse Hallam
2023-11-10 21:55:33 -04:00
коммит произвёл GitHub
родитель 10026972b5
Коммит 48bf4e9bd8
12 изменённых файлов: 175 добавлений и 8 удалений

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

@@ -1280,3 +1280,10 @@ func (api *apiTimerLayer) SendPushNotification(notification *model.PushNotificat
api.recordTime(startTime, "SendPushNotification", _returnsA == nil)
return _returnsA
}
func (api *apiTimerLayer) UpdateUserAuth(userID string, userAuth *model.UserAuth) (*model.UserAuth, *model.AppError) {
startTime := timePkg.Now()
_returnsA, _returnsB := api.apiImpl.UpdateUserAuth(userID, userAuth)
api.recordTime(startTime, "UpdateUserAuth", _returnsB == nil)
return _returnsA, _returnsB
}