Tooth/src/Views/FavoritesView.vala

20 lines
408 B
Vala
Raw Normal View History

2018-05-02 12:28:46 +00:00
using Gtk;
public class Tootle.FavoritesView : Tootle.HomeView {
public FavoritesView () {
base ("favorites");
request ();
}
public override string get_url (){
var url = "%s/api/v1/favourites?limit=25".printf (Tootle.settings.instance_url);
if (max_id > 0)
url += "&max_id=" + max_id.to_string ();
return url;
}
}