about summary refs log tree commit diff
path: root/LibMatrix.Federation/AuthenticatedFederationClient.cs
blob: 6f8d44b9c7ef0ae36b39a67884d566aa58ad1ebb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using LibMatrix.Homeservers;

namespace LibMatrix.Federation;

public class AuthenticatedFederationClient : FederationClient {
    
    public class AuthenticatedFederationConfiguration {
        
    }
    public AuthenticatedFederationClient(string federationEndpoint, AuthenticatedFederationConfiguration config, string? proxy = null) : base(federationEndpoint, proxy)
    {
        
    }
    
    // public async Task<UserDeviceListResponse> GetUserDevicesAsync(string userId) {
    //     var response = await GetAsync<UserDeviceListResponse>($"/_matrix/federation/v1/user/devices/{userId}", accessToken);
    //     return response;
    // }
    
}