Skip to content

Commit

Permalink
Add new identify method
Browse files Browse the repository at this point in the history
  • Loading branch information
Camji55 committed Jun 27, 2023
1 parent af1340f commit c293a6c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MixpanelServiceKit/MixpanelService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ extension MixpanelService: AnalyticsService {
public func recordIdentify(_ property: String, value: String) {
client?.people.set(property: property, to: value)
}

public func recordIdentify(_ property: String, array: [String]) {
client?.people.set(property: property, to: array)
}
}

extension KeychainManager {
Expand Down

0 comments on commit c293a6c

Please sign in to comment.