update change tracking and elo

master shows monitoring server count
master can provide individual localizations
This commit is contained in:
RaidMax
2018-05-20 21:35:56 -05:00
parent 4d585e6ab2
commit be68335f70
14 changed files with 176 additions and 97 deletions

View File

@ -8,7 +8,7 @@ using RestEase;
namespace IW4MAdmin.Application.API.Master
{
public class AuthenticationId
{
{
[JsonProperty("id")]
public string Id { get; set; }
}
@ -62,6 +62,9 @@ namespace IW4MAdmin.Application.API.Master
Task<VersionInfo> GetVersion();
[Get("localization")]
Task<List<SharedLibraryCore.Localization.Layout>> GetLocalization();
Task<List<SharedLibraryCore.Localization.Layout>> GetLocalization();
[Get("localization/{languageTag}")]
Task<SharedLibraryCore.Localization.Layout> GetLocalization([Path("languageTag")] string languageTag);
}
}