Display message when attempting MacOS remote control.

This commit is contained in:
Jared Goodwin 2021-05-06 06:22:29 -07:00
parent 17b77a39f8
commit 61738688c4
3 changed files with 5 additions and 4 deletions

View File

@ -9,17 +9,18 @@ namespace Remotely.Agent.Services
{
public async Task<int> LaunchChatService(string orgName, string requesterID, HubConnection hubConnection)
{
await hubConnection.SendAsync("DisplayMessage", "Feature under development.", "Feature is under development.", "bg-warning", requesterID);
return 0;
}
public async Task LaunchRemoteControl(int targetSessionId, string requesterID, string serviceID, HubConnection hubConnection)
{
await hubConnection.SendAsync("DisplayMessage", "Feature under development.", "Feature is under development.", "bg-warning", requesterID);
}
public async Task RestartScreenCaster(List<string> viewerIDs, string serviceID, string requesterID, HubConnection hubConnection, int targetSessionID = -1)
{
await hubConnection.SendAsync("DisplayMessage", "Feature under development.", "Feature is under development.", "bg-warning", requesterID);
}
}
}

View File

@ -81,7 +81,7 @@ namespace Remotely.Server.API
var filePath = Path.Combine(_hostEnv.WebRootPath, "Content", "Linux-x64", "Remotely_Desktop");
return await GetDesktopFile(filePath, organizationId);
}
case "MacOS":
case "MacOS-x64":
{
var filePath = Path.Combine(_hostEnv.WebRootPath, "Content", "MacOS-x64", "Remotely_Desktop");
return await GetDesktopFile(filePath);

View File

@ -192,7 +192,7 @@
<p>
<strong>Download:</strong>
<br />
<a target="_blank" href="/API/ClientDownloads/MacOS-x64">macOS ZSH Installer</a>
<a target="_blank" href="/API/ClientDownloads/MacOSInstaller-x64">macOS ZSH Installer</a>
<br />
<a target="_blank" href="/Content/Remotely-MacOS-x64.zip">macOS Files Only</a>
</p>