Renamed sign out to logout

This commit is contained in:
paleksandrs
2022-10-31 14:36:14 +02:00
parent c780f5eee6
commit f49a7d57bd
4 changed files with 8 additions and 8 deletions
@@ -62,10 +62,10 @@ class UserOtherSessionsViewModel: UserOtherSessionsViewModelType, UserOtherSessi
case .toggleAllSelection:
toggleAllSelection()
updateViewState()
case .signOutAllUserSessions:
case .logoutAllUserSessions:
let filteredSessions = state.bindings.filter.filterSessionsInfos(sessionInfos)
completion?(.singOutFromUserSessions(sessionInfos: filteredSessions))
case .signOutSelectedUserSessions:
case .logoutSelectedUserSessions:
let selectedSessionInfos = sessionInfos.filter { sessionInfo in
selectedSessions.contains(sessionInfo.id)
}