Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/config/magazines.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

// Base URLs for the magazine reader interface
const MAGAZINE_READER_URLS = {
production: "https://e-kirjasto.epaper.fi",
playground: "https://e-kirjasto-playground.epaper.fi"
production: "https://lehdet.e-kirjasto.fi",
playground: "https://lehdet-testing.e-kirjasto.fi"
} as const;

// API URLs for magazine catalog data
const MAGAZINE_API_URLS = {
production: "https://e-kirjasto.epaper.fi/feed/catalog",
playground: "https://e-kirjasto-playground.epaper.fi/feed/catalog"
production: "https://lehdet.e-kirjasto.fi/feed/catalog",
playground: "https://lehdet-testing.e-kirjasto.fi/feed/catalog"
} as const;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/types/magazines.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Magazine service related (epaper) TypeScript interfaces
// Magazine service related (epress) TypeScript interfaces

export interface MagazineTitle {
id: string;
Expand Down