testing in prod moment

This commit is contained in:
Madeline
2023-08-14 20:35:23 +10:00
parent 17e556a4f7
commit 5f20c8f54c
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> & {