Files
DedicatedServerCourse/Source/DedicatedServers/Private/Data/API/APIData.cpp

12 lines
307 B
C++
Raw Normal View History

// Fill out your copyright notice in the Description page of Project Settings.
#include "Data/API/APIData.h"
FString UAPIData::GetAPIEndpoint(const FGameplayTag& APIEndpoint)
{
const FString ResourceName = Resources.FindChecked(APIEndpoint);
return InvokeUrl + "/" + Stage + "/" + ResourceName;
}