make hardcoded "cadence.moe" configurable

This commit is contained in:
Cadence Ember
2023-08-23 12:45:19 +12:00
parent 92cd628a6c
commit 458a620f4a
5 changed files with 10 additions and 7 deletions

5
types.d.ts vendored
View File

@@ -19,6 +19,7 @@ export type AppServiceRegistrationConfig = {
ooye: {
namespace_prefix: string
max_file_size: number
server_name: string
}
}
@@ -27,7 +28,7 @@ export type WebhookCreds = {
token: string
}
namespace Event {
export namespace Event {
export type Outer<T> = {
type: string
room_id: string
@@ -92,7 +93,7 @@ namespace Event {
}
}
namespace R {
export namespace R {
export type RoomCreated = {
room_id: string
}