tootle-linux-client/src/Views/Home.vala

16 lines
309 B
Vala
Raw Normal View History

2019-03-11 15:14:37 +01:00
public class Tootle.Views.Home : Views.Timeline {
2018-06-13 15:13:41 +02:00
2019-03-11 15:14:37 +01:00
public Home () {
2020-05-31 12:28:35 +02:00
Object (
2020-06-03 14:41:21 +02:00
url: "/api/v1/timelines/home",
2020-05-31 12:28:35 +02:00
label: _("Home"),
icon: "user-home-symbolic"
);
2018-06-13 15:13:41 +02:00
}
2019-03-07 17:16:52 +01:00
2020-05-29 14:19:35 +02:00
public override string? get_stream_url () {
2021-07-23 13:41:03 +02:00
return account.get_stream_url ();
2018-06-20 17:50:42 +02:00
}
2018-06-13 15:13:41 +02:00
}