Skip to content

Commit

Permalink
Agregado constructor publico.
Browse files Browse the repository at this point in the history
  • Loading branch information
matiascamiletti committed Aug 11, 2018
1 parent fac9ca8 commit 265697e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MobileiaAuthenticationCore.podspec
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "MobileiaAuthenticationCore"
s.version = "0.0.3"
s.version = "0.0.4"
s.swift_version = "4.0"
s.summary = "Libreria Authentication Core para MobileIA"

Expand Down Expand Up @@ -82,7 +82,7 @@ Esta la base para la creacion de servicios de autenticacion y librerias que son
# Supports git, hg, bzr, svn and HTTP.
#

s.source = { :git => "https://github.com/MobileIA/mia-authentication-ios.git", :tag => "0.0.3" }
s.source = { :git => "https://github.com/MobileIA/mia-authentication-ios.git", :tag => "0.0.4" }


# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down
2 changes: 2 additions & 0 deletions MobileiaAuthenticationCore/MobileiaAuthentication.swift
Expand Up @@ -12,6 +12,8 @@ import Alamofire

open class MobileiaAuthentication{

public init(){}

open func signInWith(service: MIAAuthBaseService, callback: @escaping (_ object: MIAUser) -> Void, callbackError: @escaping (_ error: MIAErrorRest) -> Void){
// Iniciamos proceso de inicio de sesion.
service.signIn(callback: callback, callbackError: callbackError);
Expand Down

0 comments on commit 265697e

Please sign in to comment.