Skip to content
Snippets Groups Projects
Commit de658d61 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Update GroupChatJoinGroup function

parent 30c79172
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!89Update Bindings
......@@ -2,10 +2,10 @@ import Bindings
import XCTestDynamicOverlay
public struct GroupChatJoinGroup {
public var run: (Int) throws -> Void
public var run: (Data) throws -> Void
public func callAsFunction(trackedGroupId: Int) throws {
try run(trackedGroupId)
public func callAsFunction(serializedGroupData: Data) throws {
try run(serializedGroupData)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment