1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

chore: clear user cache upon logout

This commit is contained in:
Ferdinand Mütsch
2023-01-02 14:53:21 +01:00
parent fb5b2f52c7
commit ef5b49ebd8
6 changed files with 763 additions and 742 deletions

View File

@ -112,3 +112,7 @@ func (m *UserServiceMock) GenerateResetToken(user *models.User) (*models.User, e
func (m *UserServiceMock) FlushCache() {
m.Called()
}
func (m *UserServiceMock) FlushUserCache(s string) {
m.Called(s)
}