-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated from pipeline, Version : 24.10.0
- Loading branch information
1 parent
35bbb5e
commit 4e54134
Showing
26 changed files
with
594 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export DO_UPDATE=true | ||
export LEVEL=CRITICAL | ||
export REPO_NAME=justice-unreal-sdk-plugin | ||
export WORKDIR=/tmp/pipelines/5959756919/1143144526/ | ||
export COMMIT_HASH=b2a68124d03687644135edcc97e26a864d743bf4 | ||
export GIT_HASH=b2a68124d03687644135edcc97e26a864d743bf4 | ||
export VERSION=24.9.0 | ||
export REVISION_ID=24.9.0 | ||
export WORKDIR=/tmp/pipelines/6097312914/1164845733/ | ||
export COMMIT_HASH=bea6947586932e937ab7f6359e11f81e0863368b | ||
export GIT_HASH=bea6947586932e937ab7f6359e11f81e0863368b | ||
export VERSION=24.10.0 | ||
export REVISION_ID=24.10.0 | ||
export [email protected] | ||
export COMMIT_MESSAGE_BASE64='Y2hvcmUocmVsZWFzZSk6IDI0LjkuMCAtIGNvbW1pdGVkIGFuZCB0YWdnZWQgYnkgSmVua2luc2Fnc1ZlcnNpb246IjMuNjUuMCIKCg==' | ||
export COMMIT_MESSAGE_BASE64='Y2hvcmUocmVsZWFzZSk6IDI0LjEwLjAgLSBjb21taXRlZCBhbmQgdGFnZ2VkIGJ5IEplbmtpbnNhZ3NWZXJzaW9uOiIzLjY2LjAiCgo=' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. | ||
// This is licensed software from AccelByte Inc, for limitations | ||
// and restrictions contact your company contract manager. | ||
|
||
#include "Api/AccelByteAMSApi.h" | ||
#include "Core/AccelByteReport.h" | ||
|
||
AccelByte::Api::AMS::AMS(Credentials const& InCredentialsRef | ||
, Settings const& InSettingsRef | ||
, FHttpRetryScheduler& InHttpRef) | ||
: FApiBase(InCredentialsRef, InSettingsRef, InHttpRef) | ||
{} | ||
|
||
AccelByte::Api::AMS::~AMS() | ||
{} | ||
|
||
void AccelByte::Api::AMS::GetAccount(THandler<FAccelByteModelsAMSGetAccountResponse> const& OnSuccess, | ||
FErrorHandler const& OnError) | ||
{ | ||
FReport::Log(FString(__FUNCTION__)); | ||
|
||
const FString Url = FString::Printf(TEXT("%s/v1/namespaces/{namespace}/account") | ||
, *SettingsRef.AMSServerUrl); | ||
|
||
HttpClient.ApiRequest(TEXT("GET"), Url, {}, FString(), OnSuccess, OnError); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.