Rename timeline controllers, homeController --> homeTimelineController, etc

This commit is contained in:
Alex Gleason 2023-08-29 12:41:14 -05:00
parent b6da5a0339
commit ce4a330812
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 10 additions and 6 deletions

View File

@ -38,7 +38,11 @@ import {
statusController,
} from './controllers/api/statuses.ts';
import { streamingController } from './controllers/api/streaming.ts';
import { hashtagTimelineController, homeController, publicController } from './controllers/api/timelines.ts';
import {
hashtagTimelineController,
homeTimelineController,
publicTimelineController,
} from './controllers/api/timelines.ts';
import { trendingTagsController } from './controllers/api/trends.ts';
import { indexController } from './controllers/site.ts';
import { hostMetaController } from './controllers/well-known/host-meta.ts';
@ -107,8 +111,8 @@ app.get('/api/v1/statuses/:id{[0-9a-f]{64}}', statusController);
app.post('/api/v1/statuses/:id{[0-9a-f]{64}}/favourite', favouriteController);
app.post('/api/v1/statuses', requirePubkey, createStatusController);
app.get('/api/v1/timelines/home', requirePubkey, homeController);
app.get('/api/v1/timelines/public', publicController);
app.get('/api/v1/timelines/home', requirePubkey, homeTimelineController);
app.get('/api/v1/timelines/public', publicTimelineController);
app.get('/api/v1/timelines/tag/:hashtag', hashtagTimelineController);
app.get('/api/v1/preferences', preferencesController);

View File

@ -8,7 +8,7 @@ import { Time } from '@/utils.ts';
import type { AppController } from '@/app.ts';
const homeController: AppController = async (c) => {
const homeTimelineController: AppController = async (c) => {
const params = paginationSchema.parse(c.req.query());
const pubkey = c.get('pubkey')!;
@ -27,7 +27,7 @@ const publicQuerySchema = z.object({
local: booleanParamSchema.catch(false),
});
const publicController: AppController = async (c) => {
const publicTimelineController: AppController = async (c) => {
const params = paginationSchema.parse(c.req.query());
const { local } = publicQuerySchema.parse(c.req.query());
@ -61,4 +61,4 @@ const hashtagTimelineController: AppController = async (c) => {
return c.json(statuses, 200, link ? { link } : undefined);
};
export { hashtagTimelineController, homeController, publicController };
export { hashtagTimelineController, homeTimelineController, publicTimelineController };