Merge branch 'slowcord' of github.com:MaddyUnderStars/fosscord-server into slowcord

This commit is contained in:
Madeline 2022-09-07 15:31:40 +10:00
commit 9931698367
3 changed files with 12 additions and 10 deletions

View File

@ -14,5 +14,5 @@
</a> </a>
</p> </p>
Branch that [slowcord.maddy.k.vu](https://slowcord.maddy.k.vu) runs. Branch that [slowcord.understars.dev](https://slowcord.understars.dev) runs.
Generally up to date with master, also contains my fixes/etc that aren't yet merged. Generally up to date with master, also contains my fixes/etc that aren't yet merged.

View File

@ -38,9 +38,6 @@ export const ActivitySchema = {
}, },
$instance: Boolean, $instance: Boolean,
$flags: String, $flags: String,
},
],
$since: Number, // unix time (in milliseconds) of when the client went idle, or null if the client is not idle
$id: String, $id: String,
$sync_id: String, $sync_id: String,
@ -48,7 +45,11 @@ export const ActivitySchema = {
$context_url: String, $context_url: String,
album_id: String, album_id: String,
artist_ids: [String], artist_ids: [String],
} },
$session_id: String,
},
],
$since: Number, // unix time (in milliseconds) of when the client went idle, or null if the client is not idle
}; };
export interface ActivitySchema { export interface ActivitySchema {

View File

@ -40,7 +40,8 @@ export interface Activity {
context_url?: string; context_url?: string;
album_id: string; album_id: string;
artist_ids: string[]; artist_ids: string[];
} };
session_id: string;
} }
export enum ActivityType { export enum ActivityType {