|
|
|
|
@ -71,10 +71,8 @@ public class StoreManager { |
|
|
|
|
fileprivate func _productIdentifiers() -> [String] { |
|
|
|
|
var items: [StoreItem] = [] |
|
|
|
|
switch Guard.main.currentPlan { |
|
|
|
|
case .fivePerMonth: |
|
|
|
|
items = [StoreItem.unit, StoreItem.unit10Pack, StoreItem.monthlyUnlimited] |
|
|
|
|
case .monthlyUnlimited: |
|
|
|
|
break |
|
|
|
|
items = [StoreItem.unit, StoreItem.unit10Pack] |
|
|
|
|
default: |
|
|
|
|
items = [StoreItem.unit, StoreItem.unit10Pack, StoreItem.monthlyUnlimited] |
|
|
|
|
} |
|
|
|
|
|