Compare commits

..

1 Commits

Author SHA1 Message Date
Grigory 019488bc64 pin change fix 2017-07-07 18:08:14 +03:00
3 changed files with 5 additions and 4 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "LeadKitAdditions"
s.version = "0.0.14.1"
s.version = "0.0.14"
s.summary = "iOS framework with a bunch of tools for rapid development"
s.homepage = "https://github.com/TouchInstinct/LeadKitAdditions"
s.homepage = "https://github.com/NikAshanin/LeadKitAdditions"
s.license = "Apache License, Version 2.0"
s.author = "Touch Instinct"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/TouchInstinct/LeadKitAdditions.git", :tag => s.version }
s.source = { :git => "https://github.com/NikAshanin/LeadKitAdditions.git", :tag => s.version }
s.source_files = "LeadKitAdditions/LeadKitAdditions/**/*.swift"
s.dependency "LeadKit", '~> 0.4.6'
@@ -107,7 +107,7 @@ open class BasePassCodeViewModel: BaseViewModel {
public func reset() {
passCodeText.value = nil
validationResultHolder.value = nil
passCodeControllerStateHolder.value = .enter
passCodeControllerStateHolder.value = controllerType == .change ? .oldEnter : .enter
attemptsNumber = 0
passCodeHolder.reset()
}
@@ -53,6 +53,7 @@ open class BaseUserService {
open class func clearData() {
UserDefaults.standard.sessionId = nil
UserDefaults.standard.userLogin = nil
UserDefaults.standard.synchronize()
}
}