You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They are currently lower_snake_case, which is inconsistent with all other identifiers in FTL. This will entail something like:
Change FTL to require lowerCamelCase.
Change source code from eg. var OutgoingMessagesTopic = ftl.Topic[OutgoingMessageEvent]("outgoing_messages_topic") to var OutgoingMessagesTopic = ftl.Topic[OutgoingMessageEvent]("outgoingMessagesTopic")
Rename topics in database.
The text was updated successfully, but these errors were encountered:
They are currently lower_snake_case, which is inconsistent with all other identifiers in FTL. This will entail something like:
var OutgoingMessagesTopic = ftl.Topic[OutgoingMessageEvent]("outgoing_messages_topic")
tovar OutgoingMessagesTopic = ftl.Topic[OutgoingMessageEvent]("outgoingMessagesTopic")
The text was updated successfully, but these errors were encountered: