Skip to content

Missing "topics in" support #14

@jamesmunns

Description

@jamesmunns

We probably need:

  • A specific SDK method for topics in listing, like we do for topics out
  • a CLI method for listing this (or make sure it's shown somewhere)
  • Update the GUI to show this on one of the pages

We do expose this data through the "get schemas" method, but it's not consistent elsewhere:

pub async fn get_device_schemas(&self, serial: u64) -> Result<Option<SchemaReport>, ()> {
let res = self
.client
.send_resp::<GetSchemasEndpoint>(&serial)
.await
.map_err(drop)?;
let Some(res) = res else {
return Ok(None);
};
Ok(Some(res))
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions