mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-07-31 22:31:04 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { Config } from "../../gen/ts/v1/config_pb";
|
|
|
|
export const shouldShowSettings = (config: Config) => {
|
|
return (
|
|
!config.instance ||
|
|
!config.auth ||
|
|
(!config.auth.disabled && config.auth.users.length === 0)
|
|
);
|
|
};
|