mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-07 17:31:47 +00:00
🎨 gifs
This commit is contained in:
+10
-11
@@ -51,11 +51,6 @@ export interface ConfigValue {
|
||||
general: {
|
||||
instanceId: string;
|
||||
};
|
||||
permissions: {
|
||||
user: {
|
||||
createGuilds: boolean;
|
||||
};
|
||||
};
|
||||
limits: {
|
||||
user: {
|
||||
maxGuilds: number;
|
||||
@@ -154,6 +149,11 @@ export interface ConfigValue {
|
||||
canLeave: boolean;
|
||||
};
|
||||
};
|
||||
gif: {
|
||||
enabled: boolean;
|
||||
provider: "tenor"; // more coming soon
|
||||
apiKey?: string;
|
||||
};
|
||||
rabbitmq: {
|
||||
host: string | null;
|
||||
};
|
||||
@@ -176,11 +176,6 @@ export const DefaultConfigOptions: ConfigValue = {
|
||||
general: {
|
||||
instanceId: Snowflake.generate(),
|
||||
},
|
||||
permissions: {
|
||||
user: {
|
||||
createGuilds: true,
|
||||
},
|
||||
},
|
||||
limits: {
|
||||
user: {
|
||||
maxGuilds: 100,
|
||||
@@ -307,7 +302,6 @@ export const DefaultConfigOptions: ConfigValue = {
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
guild: {
|
||||
showAllGuildsInDiscovery: false,
|
||||
autoJoin: {
|
||||
@@ -316,6 +310,11 @@ export const DefaultConfigOptions: ConfigValue = {
|
||||
guilds: [],
|
||||
},
|
||||
},
|
||||
gif: {
|
||||
enabled: true,
|
||||
provider: "tenor",
|
||||
apiKey: "LIVDSRZULELA",
|
||||
},
|
||||
rabbitmq: {
|
||||
host: null,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user