Tooth/src/Views/Home.vala

16 lines
308 B
Vala
Raw Normal View History

2022-11-13 20:57:43 +00:00
public class Tooth.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 () {
2021-07-23 11:41:03 +00:00
return account.get_stream_url ();
2018-06-20 15:50:42 +00:00
}
2018-06-13 13:13:41 +00:00
}