Renamed sign out to logout

This commit is contained in:
paleksandrs
2022-10-31 14:36:14 +02:00
parent 6ba50d3225
commit 69ccba2bc0
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)
}