mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
This PR adds more options to the proxy setting, like username/password authentication, bypass list of domains and bypass local addresses. The UX is taken from *arrs.
25 lines
618 B
TypeScript
25 lines
618 B
TypeScript
import type { MainSettings } from '@server/lib/settings';
|
|
import { getSettings } from '@server/lib/settings';
|
|
|
|
class RestartFlag {
|
|
private settings: MainSettings;
|
|
|
|
public initializeSettings(settings: MainSettings): void {
|
|
this.settings = { ...settings };
|
|
}
|
|
|
|
public isSet(): boolean {
|
|
const settings = getSettings().main;
|
|
|
|
return (
|
|
this.settings.csrfProtection !== settings.csrfProtection ||
|
|
this.settings.trustProxy !== settings.trustProxy ||
|
|
this.settings.proxy.enabled !== settings.proxy.enabled
|
|
);
|
|
}
|
|
}
|
|
|
|
const restartFlag = new RestartFlag();
|
|
|
|
export default restartFlag;
|