Skip to content

Commit 92f0abe

Browse files
authored
fix: make the events api endpoints point back to org (#5680)
Make the events endpoints point back to org
1 parent 53b642a commit 92f0abe

File tree

1 file changed

+3
-3
lines changed
  • unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/ExploreV2/Scripts/Sections/PlacesAndEventsSection/SubSections/EventsSubSection/EventsSubSectionMenu

1 file changed

+3
-3
lines changed

unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/ExploreV2/Scripts/Sections/PlacesAndEventsSection/SubSections/EventsSubSection/EventsSubSectionMenu/EventsAPIController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ public interface IEventsAPIController
3131
[ExcludeFromCodeCoverage]
3232
public class EventsAPIController : IEventsAPIController
3333
{
34-
internal const string URL_GET_ALL_EVENTS = "https://events.decentraland.zone/api/events"; // TODO: Set it back to .org before merging!!
34+
internal const string URL_GET_ALL_EVENTS = "https://events.decentraland.org/api/events";
3535
private const string URL_GET_DETAILED_EVENT = "https://events.decentraland.org/api/events/{event_id}";
36-
private const string URL_PARTICIPATE_EVENT = "https://events.decentraland.zone/api/events/{event_id}/attendees"; // TODO: Set it back to .org before merging!!
37-
internal const string URL_GET_CATEGORIES = "https://events.decentraland.zone/api/events/categories"; // TODO: Set it back to .org before merging!!
36+
private const string URL_PARTICIPATE_EVENT = "https://events.decentraland.org/api/events/{event_id}/attendees";
37+
internal const string URL_GET_CATEGORIES = "https://events.decentraland.org/api/events/categories";
3838

3939
internal UserProfile ownUserProfile => UserProfile.GetOwnUserProfile();
4040
private Service<IWebRequestController> webRequestController;

0 commit comments

Comments
 (0)