1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-25 11:43:07 +01:00

testing in prod moment

This commit is contained in:
Madeline 2023-08-14 20:35:23 +10:00
parent 17e556a4f7
commit 5f20c8f54c
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ router.get("/", route({}), async (req, res) => {
const ret = await makeOrderedCollection(
req,
`https://${webDomain}/fed/channels/${channel_id}/followers`,
`https://${webDomain}/fed/channel/${channel_id}/followers`,
() =>
Member.count({
where: { guild: { channels: { id: channel_id } } },

View File

@ -17,7 +17,7 @@ router.get("/", route({}), async (req, res) => {
const ret = await makeOrderedCollection(
req,
`https://${webDomain}/fed/channels/${channel_id}/outbox`,
`https://${webDomain}/fed/channel/${channel_id}/outbox`,
() => Message.count({ where: { channel_id } }),
async (before, after) => {
const query: FindManyOptions<Message> & {