Skip to content

Commit

Permalink
Change url of redeem endpoints to be store/[store]/redeem
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Bylund authored and kirre-bylund committed Jan 11, 2024
1 parent a44fe4b commit 1dfc017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Client/LootLockerEndPoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ public class LootLockerEndPoints
public static EndPointClass activatingARentalAsset = new EndPointClass("v1/asset/instance/{0}/activate", LootLockerHTTPMethod.POST);

public static EndPointClass purchaseCatalogItem = new EndPointClass("purchase", LootLockerHTTPMethod.POST);
public static EndPointClass redeemAppleAppStorePurchase = new EndPointClass("redeem/store/apple", LootLockerHTTPMethod.POST);
public static EndPointClass redeemGooglePlayStorePurchase = new EndPointClass("redeem/store/google", LootLockerHTTPMethod.POST);
public static EndPointClass redeemAppleAppStorePurchase = new EndPointClass("store/apple/redeem", LootLockerHTTPMethod.POST);
public static EndPointClass redeemGooglePlayStorePurchase = new EndPointClass("store/google/redeem", LootLockerHTTPMethod.POST);

// EventTrigger
[Header("EventTrigger")]
Expand Down

0 comments on commit 1dfc017

Please sign in to comment.