Iceshrimp.NET/Iceshrimp.Frontend/Core/ControllerModels/TimelineControllerModel.cs
2024-07-04 18:02:00 +02:00

12 lines
No EOL
401 B
C#

using Iceshrimp.Frontend.Core.Miscellaneous;
using Iceshrimp.Frontend.Core.Services;
using Iceshrimp.Shared.Schemas.Web;
namespace Iceshrimp.Frontend.Core.ControllerModels;
internal class TimelineControllerModel(ApiClient api)
{
[LinkPagination(20, 80)]
public Task<List<NoteResponse>> GetHomeTimeline(PaginationQuery pq) =>
api.Call<List<NoteResponse>>(HttpMethod.Get, "/timelines/home", pq);
}