We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the current implementation of the application, all ViewModels are based on UserViewModelProtocol.
UserViewModel.swift contains only one method. It is the reset method.
protocol UserViewModelProtocol: ObservableObject{ //var user: User {get set} func reset() }
In all ViewModels (UserViewModel, StudentViewModel, TeacherViewModel and AdminViewModel), the reset method is implemented as an empty method.
func reset() { }
We need to update UserViewModelProtocol.swift or just remove it completely. It is of no use as it is implemented today
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the current implementation of the application, all ViewModels are based on UserViewModelProtocol.
UserViewModel.swift contains only one method. It is the reset method.
In all ViewModels (UserViewModel, StudentViewModel, TeacherViewModel and AdminViewModel), the reset method is implemented as an empty method.
We need to update UserViewModelProtocol.swift or just remove it completely. It is of no use as it is implemented today
The text was updated successfully, but these errors were encountered: