Skip to content

Instantly share code, notes, and snippets.

@MaximBazarov
Created June 23, 2018 13:10
Show Gist options
  • Save MaximBazarov/4bec66c7c619d86e22835faa9db23484 to your computer and use it in GitHub Desktop.
Save MaximBazarov/4bec66c7c619d86e22835faa9db23484 to your computer and use it in GitHub Desktop.
func reduce(_ old: AuthState, with action: Action) -> AuthState {
switch action {
case let payload as Auth.TokenWasObtained:
return AuthState(id: old.id,
token: payload.token
)
default: return old
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment