Migrate Delete/Restore/SetDeleteAt methods from ChannelStore to return error interface (#14700)

Automatic Merge
Этот коммит содержится в:
Rodrigo Villablanca
2020-06-05 07:32:16 -04:00
коммит произвёл GitHub
родитель 18ddae2c1b
Коммит ac32b2da41
10 изменённых файлов: 74 добавлений и 88 удалений

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

@@ -584,7 +584,7 @@ func (s *TimerLayerChannelStore) CreateDirectChannel(userId *model.User, otherUs
return resultVar0, resultVar1
}
func (s *TimerLayerChannelStore) Delete(channelId string, time int64) *model.AppError {
func (s *TimerLayerChannelStore) Delete(channelId string, time int64) error {
start := timemodule.Now()
resultVar0 := s.ChannelStore.Delete(channelId, time)
@@ -1537,7 +1537,7 @@ func (s *TimerLayerChannelStore) ResetAllChannelSchemes() *model.AppError {
return resultVar0
}
func (s *TimerLayerChannelStore) Restore(channelId string, time int64) *model.AppError {
func (s *TimerLayerChannelStore) Restore(channelId string, time int64) error {
start := timemodule.Now()
resultVar0 := s.ChannelStore.Restore(channelId, time)
@@ -1713,7 +1713,7 @@ func (s *TimerLayerChannelStore) SearchMore(userId string, teamId string, term s
return resultVar0, resultVar1
}
func (s *TimerLayerChannelStore) SetDeleteAt(channelId string, deleteAt int64, updateAt int64) *model.AppError {
func (s *TimerLayerChannelStore) SetDeleteAt(channelId string, deleteAt int64, updateAt int64) error {
start := timemodule.Now()
resultVar0 := s.ChannelStore.SetDeleteAt(channelId, deleteAt, updateAt)