chore!: remove /api/server/theme endpoint (#27880)

chore: remove server/theme endpoint
This commit is contained in:
Jason Rasmussen
2026-04-17 08:30:03 -04:00
committed by GitHub
parent 41968fdcac
commit 2f8be45fe0
11 changed files with 0 additions and 251 deletions
@@ -207,16 +207,6 @@ describe('/server', () => {
});
});
describe('GET /server/theme', () => {
it('should respond with the server theme', async () => {
const { status, body } = await request(app).get('/server/theme');
expect(status).toBe(200);
expect(body).toEqual({
customCss: '',
});
});
});
describe('GET /server/license', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get('/server/license');