[frontend] Actually load FollowRequestControllerModel

This commit is contained in:
Lilian 2024-07-09 02:36:43 +02:00
parent 635d9690af
commit d36a9ec235
No known key found for this signature in database

View file

@ -14,6 +14,7 @@ internal class ApiService(ApiClient client)
public readonly SettingsControllerModel Settings = new(client);
public readonly TimelineControllerModel Timelines = new(client);
public readonly UserControllerModel Users = new(client);
public readonly FollowRequestControllerModel FollowRequests = new(client);
public void SetBearerToken(string token) => client.SetToken(token);
}