add back slash prefix to api routes

This commit is contained in:
Kyle Spearrin 2017-10-03 23:56:10 -04:00
parent e901a1f231
commit 8a0c9ab3db
7 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "accounts"; protected override string ApiRoute => "/accounts";
public virtual async Task<ApiResult> PostRegisterAsync(RegisterRequest requestObj) public virtual async Task<ApiResult> PostRegisterAsync(RegisterRequest requestObj)
{ {

View file

@ -18,7 +18,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "ciphers"; protected override string ApiRoute => "/ciphers";
public virtual async Task<ApiResult<CipherResponse>> PostAttachmentAsync(string cipherId, byte[] data, public virtual async Task<ApiResult<CipherResponse>> PostAttachmentAsync(string cipherId, byte[] data,
string fileName) string fileName)

View file

@ -20,7 +20,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "connect"; protected override string ApiRoute => "/connect";
public virtual async Task<ApiResult<TokenResponse>> PostTokenAsync(TokenRequest requestObj) public virtual async Task<ApiResult<TokenResponse>> PostTokenAsync(TokenRequest requestObj)
{ {

View file

@ -18,7 +18,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "devices"; protected override string ApiRoute => "/devices";
public virtual async Task<ApiResult> PutTokenAsync(string identifier, DeviceTokenRequest request) public virtual async Task<ApiResult> PutTokenAsync(string identifier, DeviceTokenRequest request)
{ {

View file

@ -17,7 +17,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "settings"; protected override string ApiRoute => "/settings";
public virtual async Task<ApiResult<DomainsResponse>> GetDomains(bool excluded = false) public virtual async Task<ApiResult<DomainsResponse>> GetDomains(bool excluded = false)
{ {

View file

@ -17,7 +17,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "sync"; protected override string ApiRoute => "/sync";
public virtual async Task<ApiResult<SyncResponse>> Get() public virtual async Task<ApiResult<SyncResponse>> Get()
{ {

View file

@ -16,7 +16,7 @@ namespace Bit.App.Repositories
: base(connectivity, httpService, tokenService) : base(connectivity, httpService, tokenService)
{ } { }
protected override string ApiRoute => "two-factor"; protected override string ApiRoute => "/two-factor";
public virtual async Task<ApiResult> PostSendEmailLoginAsync(TwoFactorEmailRequest requestObj) public virtual async Task<ApiResult> PostSendEmailLoginAsync(TwoFactorEmailRequest requestObj)
{ {