forked from blisstown/campfire
feat: local and federated timelines
This commit is contained in:
parent
7db5ec7fae
commit
c51a0b1e5d
3 changed files with 64 additions and 11 deletions
|
@ -11,7 +11,7 @@ const lang = Lang();
|
|||
|
||||
let loading = false;
|
||||
|
||||
export async function getTimeline(clean) {
|
||||
export async function getTimeline(timelineType = "home", clean, localOnly = false, remoteOnly = false) {
|
||||
if (loading) return; // no spamming!!
|
||||
loading = true;
|
||||
|
||||
|
@ -22,9 +22,11 @@ export async function getTimeline(clean) {
|
|||
const timeline_data = await api.getTimeline(
|
||||
get(server).host,
|
||||
get(app).token,
|
||||
"home",
|
||||
last_post
|
||||
);
|
||||
timelineType,
|
||||
last_post,
|
||||
localOnly,
|
||||
remoteOnly
|
||||
);
|
||||
|
||||
if (!timeline_data) {
|
||||
console.error(lang.string('logs.timeline_fetch_failed'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue