huridocs/uwazi

View on GitHub
app/api/settings.v2/contracts/SettingsDataSource.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { LanguageISO6391 } from 'shared/types/commonTypes';

export interface SettingsDataSource {
  getLanguageKeys(): Promise<LanguageISO6391[]>;
  getDefaultLanguageKey(): Promise<LanguageISO6391>;
  readNewRelationshipsAllowed(): Promise<boolean>;
}