summary refs log tree commit diff
path: root/util/src/config/types/subconfigurations/guild/Discovery.ts
blob: 59d8a8aeb4ef14d41974af6789a18e461b46e229 (plain) (blame)
1
2
3
4
5
6
export class DiscoveryConfiguration {
    showAllGuilds: boolean = false;
    useRecommendation: boolean = false; // TODO: Recommendation, privacy concern?
    offset: number = 0;
    limit: number = 24;
}