Tooth/src/Views/Home.vala

16 lines
317 B
Vala
Raw Normal View History

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