@@ -18,15 +18,15 @@ class SettingsModel(BaseModel):
1818 """Settings model for bot configuration.
1919
2020 Attributes:
21- bot_id: Bot identifier .
21+ bot_id: Bot ID .
2222 last_ran_version: Last version that the bot was run on; None indicates first run.
2323 last_ran_locale: Last locale used when running the bot.
2424 last_slash_synced_version: Last version in which slash commands were synced.
2525 last_slash_minimum_permission_int: Last minimum permission integer for slash commands.
26- main_category_id : Main category identifier .
27- fallback_category_id: Fallback category identifier .
28- log_channel_id: Log channel identifier .
29- storage_channel_id: Storage channel identifier .
26+ main_category_or_forum_id : Main category or forum ID .
27+ fallback_category_id: Fallback category ID .
28+ log_channel_id: Log channel ID .
29+ storage_channel_id: Storage channel ID .
3030 status: The bot's status.
3131 activity: The bot's activity.
3232 """
@@ -38,7 +38,7 @@ class SettingsModel(BaseModel):
3838 last_ran_locale : str | None = None # The last locale the bot was run on
3939 last_slash_synced_version : str | None = None # The last version the slash commands were synced on
4040 last_slash_minimum_permission_int : int | None = None # The last minimum permission int for slash commands
41- main_category_id : int | None = None
41+ main_category_or_forum_id : int | None = None
4242 fallback_category_id : int | None = None
4343 log_channel_id : int | None = None
4444 storage_channel_id : int | None = None
0 commit comments