Commit 66123591 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Update interfaces.

parent e63200ef
package chat.rocket.android.authentication.signup.presentation
import chat.rocket.android.core.behaviours.LoadingView
import chat.rocket.android.core.behaviours.MessageView
import chat.rocket.android.core.behaviours.ShakeView
interface SignupView : LoadingView {
fun onSignupError(message: String? = "Unknown error")
}
\ No newline at end of file
interface SignupView : LoadingView, MessageView, ShakeView
\ No newline at end of file
......@@ -2,5 +2,6 @@ package chat.rocket.android.authentication.twofactor.presentation
import chat.rocket.android.core.behaviours.LoadingView
import chat.rocket.android.core.behaviours.MessageView
import chat.rocket.android.core.behaviours.ShakeView
interface TwoFAView : LoadingView, MessageView
\ No newline at end of file
interface TwoFAView : LoadingView, MessageView, ShakeView
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment