chore (backend-rs): make variable names clearer
This commit is contained in:
parent
5c6f1c818a
commit
137d0fe3e5
2 changed files with 27 additions and 24 deletions
|
@ -13,7 +13,7 @@ pub fn add_note_to_antenna(antenna_id: &str, note_id: &str) -> Result<(), Error>
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
let stream = Stream::Antenna {
|
let stream = Stream::Antenna {
|
||||||
id: antenna_id.to_string(),
|
antenna_id: antenna_id.to_string(),
|
||||||
};
|
};
|
||||||
publish_to_stream(
|
publish_to_stream(
|
||||||
&stream,
|
&stream,
|
||||||
|
|
|
@ -8,30 +8,33 @@ pub enum Stream {
|
||||||
Internal,
|
Internal,
|
||||||
#[strum(serialize = "broadcast")]
|
#[strum(serialize = "broadcast")]
|
||||||
Broadcast,
|
Broadcast,
|
||||||
#[strum(to_string = "adminStream:{id}")]
|
#[strum(to_string = "adminStream:{user_id}")]
|
||||||
Admin { id: String },
|
Admin { user_id: String },
|
||||||
#[strum(to_string = "user:{id}")]
|
#[strum(to_string = "user:{user_id}")]
|
||||||
User { id: String },
|
User { user_id: String },
|
||||||
#[strum(to_string = "channelStream:{id}")]
|
#[strum(to_string = "channelStream:{channel_id}")]
|
||||||
Channel { id: String },
|
Channel { channel_id: String },
|
||||||
#[strum(to_string = "noteStream:{id}")]
|
#[strum(to_string = "noteStream:{note_id}")]
|
||||||
Note { id: String },
|
Note { note_id: String },
|
||||||
#[strum(serialize = "notesStream")]
|
#[strum(serialize = "notesStream")]
|
||||||
Notes,
|
Notes,
|
||||||
#[strum(to_string = "userListStream:{id}")]
|
#[strum(to_string = "userListStream:{list_id}")]
|
||||||
UserList { id: String },
|
UserList { list_id: String },
|
||||||
#[strum(to_string = "mainStream:{id}")]
|
#[strum(to_string = "mainStream:{user_id}")]
|
||||||
Main { id: String },
|
Main { user_id: String },
|
||||||
#[strum(to_string = "driveStream:{id}")]
|
#[strum(to_string = "driveStream:{user_id}")]
|
||||||
Drive { id: String },
|
Drive { user_id: String },
|
||||||
#[strum(to_string = "antennaStream:{id}")]
|
#[strum(to_string = "antennaStream:{antenna_id}")]
|
||||||
Antenna { id: String },
|
Antenna { antenna_id: String },
|
||||||
#[strum(to_string = "messagingStream:{id_1}-{id_2}")]
|
#[strum(to_string = "messagingStream:{sender_user_id}-{receiver_user_id}")]
|
||||||
Chat { id_1: String, id_2: String },
|
Chat {
|
||||||
#[strum(to_string = "messagingStream:{id}")]
|
sender_user_id: String,
|
||||||
GroupChat { id: String },
|
receiver_user_id: String,
|
||||||
#[strum(to_string = "messagingIndexStream:{id}")]
|
},
|
||||||
MessagingIndex { id: String },
|
#[strum(to_string = "messagingStream:{group_id}")]
|
||||||
|
GroupChat { group_id: String },
|
||||||
|
#[strum(to_string = "messagingIndexStream:{user_id}")]
|
||||||
|
MessagingIndex { user_id: String },
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(thiserror::Error, Debug)]
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
@ -79,7 +82,7 @@ mod unit_test {
|
||||||
assert_eq!(Stream::Broadcast.to_string(), "broadcast");
|
assert_eq!(Stream::Broadcast.to_string(), "broadcast");
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
Stream::Admin {
|
Stream::Admin {
|
||||||
id: "9tb42br63g5apjcq".to_string()
|
user_id: "9tb42br63g5apjcq".to_string()
|
||||||
}
|
}
|
||||||
.to_string(),
|
.to_string(),
|
||||||
"adminStream:9tb42br63g5apjcq"
|
"adminStream:9tb42br63g5apjcq"
|
||||||
|
|
Loading…
Reference in a new issue