Home
last modified time | relevance | path

Searched refs:PermanentDeleteByUser (Results 1 – 25 of 29) sorted by relevance

12

/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/mocks/
H A DAuditStore.go41 func (_m *AuditStore) PermanentDeleteByUser(userID string) error { func
H A DPreferenceStore.go171 func (_m *PreferenceStore) PermanentDeleteByUser(userID string) error { func
H A DCommandStore.go136 func (_m *CommandStore) PermanentDeleteByUser(userID string) error { func
H A DFileInfoStore.go303 func (_m *FileInfoStore) PermanentDeleteByUser(userID string) (int64, error) { func
H A DPostStore.go781 func (_m *PostStore) PermanentDeleteByUser(userID string) error { func
/dports/www/mattermost-server/mattermost-server-6.0.2/store/searchlayer/
H A Dfile_info_layer.go152 func (s SearchFileInfoStore) PermanentDeleteByUser(userId string) (int64, error) { func
153 result, err := s.FileInfoStore.PermanentDeleteByUser(userId)
H A Dpost_layer.go123 func (s SearchPostStore) PermanentDeleteByUser(userID string) error { func
124 err := s.PostStore.PermanentDeleteByUser(userID)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/
H A Daudit_store.go50 require.NoError(t, ss.Audit().PermanentDeleteByUser(audit.UserId))
H A Dcommand_store.go183 nErr = ss.Command().PermanentDeleteByUser(o1.CreatorId)
H A Dpreference_store.go231 err = ss.Preference().PermanentDeleteByUser(userId)
H A Dfile_info_store.go604 _, err = ss.FileInfo().PermanentDeleteByUser(userId)
H A Dthread_store.go236 err = ss.Post().PermanentDeleteByUser(rootPost.UserId)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/sqlstore/
H A Daudit_store.go76 func (s SqlAuditStore) PermanentDeleteByUser(userId string) error { func
H A Dcommand_store.go161 func (s SqlCommandStore) PermanentDeleteByUser(userId string) error { func
H A Dpreference_store.go160 func (s SqlPreferenceStore) PermanentDeleteByUser(userId string) error { func
H A Dfile_info_store.go419 func (fs SqlFileInfoStore) PermanentDeleteByUser(userId string) (int64, error) { func
H A Dintegrity_test.go751 ss.Audit().PermanentDeleteByUser(userId)
969 ss.Audit().PermanentDeleteByUser(userId)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/
H A Dstore.go317 PermanentDeleteByUser(userID string) error methodSpec
461 PermanentDeleteByUser(userID string) error methodSpec
564 PermanentDeleteByUser(userID string) error methodSpec
584 PermanentDeleteByUser(userID string) error methodSpec
639 PermanentDeleteByUser(userID string) (int64, error) methodSpec
/dports/www/mattermost-server/mattermost-server-6.0.2/store/searchtest/
H A Dhelper.go392 err := th.Store.Post().PermanentDeleteByUser(userID)
400 if _, err := th.Store.FileInfo().PermanentDeleteByUser(userID); err != nil {
/dports/www/mattermost-server/mattermost-server-6.0.2/api4/
H A Duser_test.go5520 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5537 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5556 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5578 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5621 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5648 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5753 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5941 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
5998 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
6041 defer th.App.Srv().Store.Post().PermanentDeleteByUser(th.BasicUser.Id)
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/app/
H A Dauto_responder_test.go222 require.NoError(t, th.GetSqlStore().Post().PermanentDeleteByUser(th.BasicUser.Id))
H A Duser.go1458 if err := a.Srv().Store.Command().PermanentDeleteByUser(user.Id); err != nil {
1462 if err := a.Srv().Store.Preference().PermanentDeleteByUser(user.Id); err != nil {
1474 if err := a.Srv().Store.Post().PermanentDeleteByUser(user.Id); err != nil {
1520 if _, err := a.Srv().Store.FileInfo().PermanentDeleteByUser(user.Id); err != nil {
1528 if err := a.Srv().Store.Audit().PermanentDeleteByUser(user.Id); err != nil {
/dports/www/mattermost-server/mattermost-server-6.0.2/store/retrylayer/
H A Dretrylayer.go431 func (s *RetryLayerAuditStore) PermanentDeleteByUser(userID string) error { func
435 err := s.AuditStore.PermanentDeleteByUser(userID)
2851 func (s *RetryLayerCommandStore) PermanentDeleteByUser(userID string) error { func
2855 err := s.CommandStore.PermanentDeleteByUser(userID)
3509 func (s *RetryLayerFileInfoStore) PermanentDeleteByUser(userID string) (int64, error) { func
3513 result, err := s.FileInfoStore.PermanentDeleteByUser(userID)
6093 func (s *RetryLayerPostStore) PermanentDeleteByUser(userID string) error { func
6097 err := s.PostStore.PermanentDeleteByUser(userID)
6373 func (s *RetryLayerPreferenceStore) PermanentDeleteByUser(userID string) error { func
6377 err := s.PreferenceStore.PermanentDeleteByUser(userID)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/timerlayer/
H A Dtimerlayer.go409 func (s *TimerLayerAuditStore) PermanentDeleteByUser(userID string) error { func
412 err := s.AuditStore.PermanentDeleteByUser(userID)
2449 func (s *TimerLayerCommandStore) PermanentDeleteByUser(userID string) error { func
2452 err := s.CommandStore.PermanentDeleteByUser(userID)
3006 func (s *TimerLayerFileInfoStore) PermanentDeleteByUser(userID string) (int64, error) { func
3009 result, err := s.FileInfoStore.PermanentDeleteByUser(userID)
5116 func (s *TimerLayerPostStore) PermanentDeleteByUser(userID string) error { func
5119 err := s.PostStore.PermanentDeleteByUser(userID)
5340 func (s *TimerLayerPreferenceStore) PermanentDeleteByUser(userID string) error { func
5343 err := s.PreferenceStore.PermanentDeleteByUser(userID)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/opentracinglayer/
H A Dopentracinglayer.go411 func (s *OpenTracingLayerAuditStore) PermanentDeleteByUser(userID string) error { func
420 err := s.AuditStore.PermanentDeleteByUser(userID)
2665 func (s *OpenTracingLayerCommandStore) PermanentDeleteByUser(userID string) error { func
2674 err := s.CommandStore.PermanentDeleteByUser(userID)
3280 func (s *OpenTracingLayerFileInfoStore) PermanentDeleteByUser(userID string) (int64, error) { func
3289 result, err := s.FileInfoStore.PermanentDeleteByUser(userID)
5644 func (s *OpenTracingLayerPostStore) PermanentDeleteByUser(userID string) error { func
5653 err := s.PostStore.PermanentDeleteByUser(userID)
5896 func (s *OpenTracingLayerPreferenceStore) PermanentDeleteByUser(userID string) error { func
5905 err := s.PreferenceStore.PermanentDeleteByUser(userID)

12