fix: remove subpath support for HD_BASE_URL

With this commit we drop the subpath support which results in the constraint that HedgeDoc must always run on the root of a domain. This makes a lot of things in testing, rendering and security much easier.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-08-12 20:07:38 +02:00
parent 7401791ec8
commit dccd58f0c1
32 changed files with 111 additions and 116 deletions

View file

@ -25,7 +25,7 @@ describe('History', () => {
describe('is as given when not empty', () => {
beforeEach(() => {
cy.clearLocalStorage('history')
cy.intercept('GET', 'api/private/me/history', {
cy.intercept('GET', '/api/private/me/history', {
body: [
{
identifier: 'cypress',
@ -52,7 +52,7 @@ describe('History', () => {
describe('is untitled when not empty', () => {
beforeEach(() => {
cy.clearLocalStorage('history')
cy.intercept('GET', 'api/private/me/history', {
cy.intercept('GET', '/api/private/me/history', {
body: [
{
identifier: 'cypress-no-title',
@ -85,7 +85,7 @@ describe('History', () => {
describe('working', () => {
beforeEach(() => {
cy.intercept('PUT', 'api/private/me/history/features', (req) => {
cy.intercept('PUT', '/api/private/me/history/features', (req) => {
req.reply(200, req.body)
})
})
@ -115,7 +115,7 @@ describe('History', () => {
describe('failing', () => {
beforeEach(() => {
cy.intercept('PUT', 'api/private/me/history/features', {
cy.intercept('PUT', '/api/private/me/history/features', {
statusCode: 401
})
})
@ -143,7 +143,7 @@ describe('History', () => {
describe('Import', () => {
beforeEach(() => {
cy.clearLocalStorage('history')
cy.intercept('GET', 'api/private/me/history', {
cy.intercept('GET', '/api/private/me/history', {
body: []
})
cy.visitHistory()